Merge pull request #1059 from josepfo/fix/hide-tooltip-on-editable-cards
fix: hide tooltip on editable cards
This commit is contained in:
commit
811db77751
1 changed files with 5 additions and 2 deletions
|
|
@ -8,7 +8,7 @@ import { useState, React } from 'react'
|
|||
import ErrorMessage from 'src/components/ErrorMessage'
|
||||
import PromptWhenDirty from 'src/components/PromptWhenDirty'
|
||||
import { MainStatus } from 'src/components/Status'
|
||||
import { HoverableTooltip } from 'src/components/Tooltip'
|
||||
// import { HoverableTooltip } from 'src/components/Tooltip'
|
||||
import { ActionButton } from 'src/components/buttons'
|
||||
import { Label1, P, H3 } from 'src/components/typography'
|
||||
import {
|
||||
|
|
@ -148,7 +148,10 @@ const EditableCard = ({
|
|||
<div className={classes.cardHeader}>
|
||||
{titleIcon}
|
||||
<H3 className={classes.cardTitle}>{title}</H3>
|
||||
<HoverableTooltip width={304}></HoverableTooltip>
|
||||
{
|
||||
// TODO: Enable for next release
|
||||
/* <HoverableTooltip width={304}></HoverableTooltip> */
|
||||
}
|
||||
</div>
|
||||
{state && authorize && (
|
||||
<div className={classnames(label1ClassNames)}>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue