Skip to content

Commit

Permalink
Update tooltip in header
Browse files Browse the repository at this point in the history
  • Loading branch information
Derek Luu committed Sep 18, 2023
1 parent 0bb98a4 commit 6f8bd5b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion modules/components/src/Arranger/ArrangerHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ import { QuestionCircleOutlined } from '@ant-design/icons';

import './ArrangerHeader.css';

const ArrangerHeader = ({ title = 'Search', tooltipTitle = 'test tooltip' }) => (
const DEFAULT_TOOLTIP =
'Use the search filters to find Project file metadata in the Green Room and Core. Click Download to download the search metadata in tab separated value (TSV) format.';

const ArrangerHeader = ({ title = 'Search', tooltipTitle = DEFAULT_TOOLTIP }) => (
<div className="arranger-header">
<p className="arranger-header__title">
{title}
Expand Down

0 comments on commit 6f8bd5b

Please sign in to comment.