fix: logic

This commit is contained in:
Arman
2024-02-28 16:37:42 +01:00
parent 0071ce01aa
commit d92eec83ee
+1 -1
View File
@@ -14,7 +14,7 @@ export function isTypeTagValue(obj: any): obj is TagValue {
return (
obj &&
typeof obj.tag === 'string' &&
(typeof obj.value === 'string' || typeof obj.value === 'number')
(typeof obj.value === 'string' || typeof obj.value === 'number' || Array.isArray(obj.value))
);
}