We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdbf3f2 commit 0d45fc4Copy full SHA for 0d45fc4
1 file changed
src/component/panels/RangesPanel/RangesHeader.tsx
@@ -314,14 +314,14 @@ function RangesHeader(props: RangesHeaderProps) {
314
{
315
disabled: !hasRanges,
316
icon: <FaCopy />,
317
- tooltip: `${booleanToString(!showPublicationString)} publication string`,
+ tooltip: `${booleanToString(!showPublicationString, { trueLabel: 'Display' })} publication string`,
318
onClick: handleShowPublicationString,
319
active: showPublicationString,
320
},
321
322
323
icon: <SvgNmrPeaksTopLabels />,
324
- tooltip: `${booleanToString(!showRanges)} ranges`,
+ tooltip: `${booleanToString(!showRanges, { trueLabel: 'Display' })} table`,
325
onClick: handleShowRanges,
326
active: showRanges,
327
0 commit comments