feat: refs #8077 sumDefaulter #1239

Merged
robert merged 9 commits from 8077-sumDefaulterFrontFix into dev 2025-01-24 10:55:38 +00:00
1 changed files with 1 additions and 0 deletions
Showing only changes of commit fb18d5eace - Show all commits

View File

@ -202,6 +202,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());
}