vueless 0.0.305 → 0.0.306
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.
- package/package.json +1 -1
- package/ui.data-table/index.vue +6 -0
- package/web-types.json +1 -1
package/package.json
CHANGED
package/ui.data-table/index.vue
CHANGED
|
@@ -431,6 +431,12 @@ const sortedRows = computed(() => {
|
|
|
431
431
|
const [key] = entry;
|
|
432
432
|
const headerIndex = headerKeys.indexOf(key);
|
|
433
433
|
|
|
434
|
+
if (!~headerIndex) {
|
|
435
|
+
sortedEntries.push(entry);
|
|
436
|
+
|
|
437
|
+
return;
|
|
438
|
+
}
|
|
439
|
+
|
|
434
440
|
sortedEntries[headerIndex] = entry;
|
|
435
441
|
});
|
|
436
442
|
|