Skip to content

Commit 7c44a54

Browse files
authored
Merge pull request #441 from ownego/fix/sort-markup-indextable
Fix/sort markup indextable
2 parents 9c93093 + 1a597da commit 7c44a54

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/components/IndexTable/IndexTableBase.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -814,7 +814,7 @@ function renderHeadingContent(heading: IndexTableHeading, index: number) {
814814
isCurrentlySorted && styles['TableHeadingSortIcon-visible'],
815815
),
816816
},
817-
() => h(SourceComponent, { className: styles.TableHeadingSortSvg, ariaHidden: true, focusable: false }),
817+
h(SourceComponent, { className: styles.TableHeadingSortSvg, ariaHidden: true, focusable: false }),
818818
);
819819
820820
const defaultSortButtonProps = {
@@ -850,15 +850,15 @@ function renderHeadingContent(heading: IndexTableHeading, index: number) {
850850
styles.TableHeadingTooltipUnderlinePlaceholder,
851851
),
852852
},
853-
() => headingContent,
853+
headingContent,
854854
)
855855
],
856856
);
857857
858858
if (!props.sortToggleLabels || selectMode.value) {
859859
return h(
860860
'div', { class: styles.SortableTableHeadingWithCustomMarkup },
861-
() => sortMarkup,
861+
sortMarkup,
862862
)
863863
}
864864

0 commit comments

Comments
 (0)