Skip to content
Snippets Groups Projects
Unverified Commit b77e42c9 authored by Tom Robinson's avatar Tom Robinson
Browse files

Merge branch 'collections' of github.com:metabase/metabase into collections [ci e2e]

parents 16c0b38c 1c8ca3f3
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ const TitleAndDescription = ({ title, description }) =>
<h2 className="mr1">{title}</h2>
{ description &&
<Tooltip tooltip={description} maxWidth={'22em'}>
<Icon name='info'/>
<Icon name='info' style={{ marginTop: 3 }}/>
</Tooltip>
}
</div>;
......
......@@ -15,7 +15,7 @@ const ArchivedItem = ({ name, type, icon, color = '#DEEAF1', isAdmin = false, on
/>
{ name }
{ isAdmin &&
<Tooltip tooltip={`Unarchive this ${type}`}>
<Tooltip tooltip={`Unarchive this ${type === "card" ? "question" : type}`}>
<Icon
onClick={onUnarchive}
className="ml-auto cursor-pointer text-brand-hover hover-child"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment