Skip to content

Commit 6f33893

Browse files
committed
fix(settings): remove reference to raw value
1 parent 690b289 commit 6f33893

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/settings/types/list.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export default class List extends ArraySetting {
2525
}
2626

2727
default(data = []) {
28-
return data;
28+
return [...data];
2929
}
3030

3131
encode(value = []) {

0 commit comments

Comments
 (0)