Skip to content

Commit

Permalink
fix title for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ashtonG committed Oct 29, 2024
1 parent aff0f22 commit 4fde32e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion webui/react/src/components/MultiSortMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,13 +175,15 @@ const ColumnOptions: React.FC<ColumnOptionsProps> = ({
</Fragment>
);
});
const title = c.displayName || c.column;
const label = (
<>
{c.displayName || c.column} {badges}
{title} {badges}
</>
);
return {
label,
title,
value: c.column,
};
})}
Expand Down

0 comments on commit 4fde32e

Please sign in to comment.