File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 18
18
19
19
strategy :
20
20
matrix :
21
- node-version : [19 ]
21
+ node-version : [20.10.0 ]
22
22
23
23
steps :
24
24
- uses : actions/checkout@v3
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