free-fe-core-modules 0.0.39 → 0.0.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -364,9 +364,7 @@ export default defineComponent({
|
|
|
364
364
|
},
|
|
365
365
|
localRows: computed(() => {
|
|
366
366
|
if (!props.Field?.Options?.Rows) return [];
|
|
367
|
-
|
|
368
|
-
props.Field.Options.Rows.sort((a, b) => (Number(a.auto__index) || 0) - (Number(b.auto__index) || 0));
|
|
369
|
-
return props.Field.Options.Rows;
|
|
367
|
+
return [...props.Field.Options.Rows].sort((a, b) => (Number(a.auto__index) || 0) - (Number(b.auto__index) || 0));
|
|
370
368
|
}),
|
|
371
369
|
}
|
|
372
370
|
},
|