Skip to content

Commit fd9149e

Browse files
Merge branch 'main' into dev
2 parents d94c401 + f9ef6c4 commit fd9149e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Diff for: .github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
strategy:
2020
matrix:
21-
node-version: [19]
21+
node-version: [20.10.0]
2222

2323
steps:
2424
- uses: actions/checkout@v3

Diff for: src/plugin/slots/HeadersSlot.vue

+1-3
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ const isAllSelected = ref<boolean>(false);
132132
const items = ref(props.items);
133133
const matchColumnWidths = ref<boolean>(props.matchColumnWidths);
134134
const columnWidths = ref<number[]>(props.columnWidths || []);
135-
const sortAscIcon = ref(props.sortAscIcon);
135+
const sortAscIcon = ref(props.sortAscIcon ?? '$sortAsc');
136136
const tableModelValue = computed(() => props.tableModelValue);
137137
const theme = useTheme();
138138
@@ -149,7 +149,6 @@ watch(() => props.items, (newItems) => {
149149
});
150150
});
151151
152-
153152
// -------------------------------------------------- Header Row //
154153
const 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

0 commit comments

Comments
 (0)