File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -132,7 +132,7 @@ const isAllSelected = ref<boolean>(false);
132
132
const items = ref (props .items );
133
133
const matchColumnWidths = ref <boolean >(props .matchColumnWidths );
134
134
const columnWidths = ref <number []>(props .columnWidths || []);
135
- const sortAscIcon = ref (props .sortAscIcon );
135
+ const sortAscIcon = ref (props .sortAscIcon ?? ' $sortAsc ' );
136
136
const tableModelValue = computed (() => props .tableModelValue );
137
137
const theme = useTheme ();
138
138
@@ -149,7 +149,6 @@ watch(() => props.items, (newItems) => {
149
149
});
150
150
});
151
151
152
-
153
152
// -------------------------------------------------- Header Row //
154
153
const headerRowClasses = computed <object >(() => {
155
154
return useHeaderRowClasses ({ level: props .level });
@@ -290,7 +289,6 @@ const iconSize = computed(() => {
290
289
return ' small' ;
291
290
}
292
291
293
- sortAscIcon .value = props ?.sortAscIcon ?? ' $sortAsc' ;
294
292
return ' default' ;
295
293
});
296
294
You can’t perform that action at this time.
0 commit comments