File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export const ResourceStatusCell = ({
1818 message,
1919 positiveText,
2020 negativeText,
21- hideOnHoverEffect
21+ hideOnHoverEffect,
2222} : ResourceStatusCellProps ) => {
2323 const btnRef = useRef < ButtonDomRef > ( null ) ;
2424 const [ popoverIsOpen , setPopoverIsOpen ] = useState ( false ) ;
@@ -33,13 +33,7 @@ export const ResourceStatusCell = ({
3333 return (
3434 < span >
3535 { hideOnHoverEffect ? (
36- < Button
37- ref = { btnRef }
38- design = "Transparent"
39- onClick = { handleOpen }
40- title = { timeAgo }
41- aria-label = { timeAgo }
42- >
36+ < Button ref = { btnRef } design = "Transparent" title = { timeAgo } aria-label = { timeAgo } onClick = { handleOpen } >
4337 < Icon
4438 design = { isOk ? 'Positive' : 'Negative' }
4539 name = { isOk ? 'sys-enter-2' : 'sys-cancel-2' }
You can’t perform that action at this time.
0 commit comments