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);
132132const items = ref (props .items );
133133const matchColumnWidths = ref <boolean >(props .matchColumnWidths );
134134const columnWidths = ref <number []>(props .columnWidths || []);
135- const sortAscIcon = ref (props .sortAscIcon );
135+ const sortAscIcon = ref (props .sortAscIcon ?? ' $sortAsc ' );
136136const tableModelValue = computed (() => props .tableModelValue );
137137const theme = useTheme ();
138138
@@ -149,7 +149,6 @@ watch(() => props.items, (newItems) => {
149149 });
150150});
151151
152-
153152// -------------------------------------------------- Header Row //
154153const headerRowClasses = computed <object >(() => {
155154 return useHeaderRowClasses ({ level: props .level });
@@ -290,7 +289,6 @@ const iconSize = computed(() => {
290289 return ' small' ;
291290 }
292291
293- sortAscIcon .value = props ?.sortAscIcon ?? ' $sortAsc' ;
294292 return ' default' ;
295293});
296294
You can’t perform that action at this time.
0 commit comments