@globalbrain/sefirot 2.31.0 → 2.31.1
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.
|
@@ -231,7 +231,7 @@ function getCell(key: string, index: number) {
|
|
|
231
231
|
<div class="block" ref="block">
|
|
232
232
|
<div class="row" ref="row">
|
|
233
233
|
<STableItem
|
|
234
|
-
v-for="key in options.orders"
|
|
234
|
+
v-for="key in unref(options.orders)"
|
|
235
235
|
:key="key"
|
|
236
236
|
:name="key"
|
|
237
237
|
:class-name="unref(options.columns)[key].className"
|
|
@@ -275,7 +275,7 @@ function getCell(key: string, index: number) {
|
|
|
275
275
|
>
|
|
276
276
|
<div class="row" :class="isSummaryOrLastClass(rIndex)">
|
|
277
277
|
<STableItem
|
|
278
|
-
v-for="key in options.orders"
|
|
278
|
+
v-for="key in unref(options.orders)"
|
|
279
279
|
:key="key"
|
|
280
280
|
:name="key"
|
|
281
281
|
:class-name="unref(options.columns)[key].className"
|