Skip to content

Commit

Permalink
Fix tooltip title of saved filter
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis Benz committed Jul 8, 2024
1 parent 9f829e5 commit c14f603
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/shared/TableFilterProfiles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ const TableFiltersProfiles = ({
// repeat for each profile in profiles filtered for currently shown resource (else-case)
currentProfiles.map((profile, key) => (
<li key={key}>
<Tooltip title="profile.description">
<Tooltip title={profile.description}>
<button
onClick={() => chooseFilterProfile(profile.filterMap)}
className="button-li ke-anchor"
Expand Down

0 comments on commit c14f603

Please sign in to comment.