Skip to content

Commit

Permalink
feat(run): add tip for ctrl+click on run page
Browse files Browse the repository at this point in the history
Add question mark with tooltip to run page toolbar there's no information on this available

Signed-off-by: Danil Kostromin <[email protected]>
  • Loading branch information
Danil Kostromin committed Jan 12, 2024
1 parent 5bd5778 commit fef80a8
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {
import { RunData } from '@/shared/types';
import { useMount } from '@/shared/hooks';
import { getErrorMessage } from '@/services/bublik-api';
import { Icon, Skeleton } from '@/shared/tailwind-ui';
import { Icon, Skeleton, Tooltip } from '@/shared/tailwind-ui';

import { globalFilterFn } from './filter';
import {
Expand Down Expand Up @@ -161,6 +161,11 @@ export const RunTable = (props: RunTableProps) => {
<span className="text-text-primary text-[0.75rem] font-semibold leading-[0.875rem]">
Toolbar
</span>
<Tooltip content="You can `ctrl+click` to open filtered results in subtree">
<div className="mr-auto ml-2 text-primary">
<Icon name="InformationCircleQuestionMark" size={16} />
</div>
</Tooltip>
<Toolbar table={table} />
</div>
<div className="bg-white rounded" data-testid="run-table">
Expand Down

0 comments on commit fef80a8

Please sign in to comment.