8452-testToMaster #1292

Merged
alexm merged 394 commits from 8452-testToMaster into master 2025-01-28 06:44:16 +00:00
1 changed files with 1 additions and 0 deletions
Showing only changes of commit f7b1d7bd37 - Show all commits

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());
}