0
0
Fork 0
This commit is contained in:
Alex Moreno 2025-01-24 11:47:13 +01:00
commit f7b1d7bd37
1 changed files with 1 additions and 0 deletions

View File

@ -205,6 +205,7 @@ export function useArrayData(key, userOptions) {
}
function toArray(str = []) {
if (!str) return [];
if (Array.isArray(str)) return str;
if (typeof str === 'string') return str.split(',').map((item) => item.trim());
}