Skip to content

Commit 8532d35

Browse files
authored
fix: fixed array type for default values (#72) (#73)
1 parent 51a2012 commit 8532d35

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/lib/kit/utils/common.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import {
55
NumberSpec,
66
ObjectValue,
77
Spec,
8+
SpecTypes,
89
StringSpec,
910
isArraySpec,
1011
isObjectSpec,
@@ -76,7 +77,10 @@ export const prepareSpec = <Type extends Spec>(
7677
}
7778
}
7879

79-
if (typeof _defaultValue === result.type) {
80+
if (
81+
typeof _defaultValue === result.type ||
82+
(_.isArray(_defaultValue) && result.type === SpecTypes.Array)
83+
) {
8084
result.defaultValue = _defaultValue;
8185
} else {
8286
result.defaultValue = undefined;

0 commit comments

Comments
 (0)