Skip to content

Commit 9f8319e

Browse files
committed
UNFIN
1 parent aa18b41 commit 9f8319e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

packages/vue/src/components/FSortFilterDataset/FSortFilterDataset.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@ onMounted(() => {
195195
tableCallbackSortableColumns(Object.keys(props.sortableAttributes));
196196
});
197197
198+
// shallow watch used because inline row edits should not trigger sort directly
198199
watch(
199200
() => props.data,
200201
() => {
@@ -212,7 +213,7 @@ watch(
212213
}
213214
sortFilterData();
214215
},
215-
{ immediate: true, deep: true },
216+
{ immediate: true, deep: 1 },
216217
);
217218
218219
function sortFilterData(): void {

0 commit comments

Comments
 (0)