mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
revert changes from Table.jsx
This commit is contained in:
parent
81a5ee19a7
commit
fe90d249f2
1 changed files with 4 additions and 4 deletions
|
|
@ -1787,7 +1787,7 @@ export function Table({
|
|||
)}
|
||||
{!loadingState && showAddNewRowButton && (
|
||||
<>
|
||||
<Tooltip id={`tooltip-for-add-new-row-${id}` } className="tooltip" />
|
||||
<Tooltip id={ `tooltip-for-add-new-row-${id}` } className="tooltip" />
|
||||
<ButtonSolid
|
||||
variant="ghostBlack"
|
||||
fill={`var(--icons-default)`}
|
||||
|
|
@ -1803,7 +1803,7 @@ export function Table({
|
|||
}
|
||||
}}
|
||||
size="md"
|
||||
data-tooltip-id={tableButtonHoveredId === id ? `tooltip-for-add-new-row-${id}` : "" }
|
||||
data-tooltip-id={ tableButtonHoveredId === id ? `tooltip-for-add-new-row-${id}` : "" }
|
||||
data-tooltip-content="Add new row"
|
||||
></ButtonSolid>
|
||||
</>
|
||||
|
|
@ -1827,7 +1827,7 @@ export function Table({
|
|||
fill={`var(--icons-default)`}
|
||||
iconWidth="16"
|
||||
size="md"
|
||||
data-tooltip-id={ tableButtonHoveredId === id ? `tooltip-for-download-${id}` : ""}
|
||||
data-tooltip-id={ tableButtonHoveredId === id ? `tooltip-for-download-${id}` : "" }
|
||||
data-tooltip-content="Download"
|
||||
onClick={(e) => {
|
||||
if (document.activeElement === e.currentTarget) {
|
||||
|
|
@ -1861,7 +1861,7 @@ export function Table({
|
|||
e.currentTarget.blur();
|
||||
}
|
||||
}}
|
||||
data-tooltip-id={ tableButtonHoveredId === id ? `tooltip-for-manage-columns-${id}` : ""}
|
||||
data-tooltip-id={ tableButtonHoveredId === id ? `tooltip-for-manage-columns-${id}` : "" }
|
||||
data-tooltip-content="Manage columns"
|
||||
></ButtonSolid>
|
||||
</OverlayTriggerComponent>
|
||||
|
|
|
|||
Loading…
Reference in a new issue