Skip to content

Commit 5ecaf0a

Browse files
committed
fix: tooltip placement
1 parent 94d8484 commit 5ecaf0a

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

src/containers/Operations/columns.tsx

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,11 @@ function OperationsActions({operation, database, refreshTable}: OperationsAction
163163

164164
return (
165165
<div className={b('buttons-container')}>
166-
<Tooltip openDelay={0} content={i18n('header_forget')} placement="right">
166+
<Tooltip
167+
openDelay={0}
168+
content={i18n('header_forget')}
169+
placement={['right', 'right-end', 'right-start', 'top', 'bottom']}
170+
>
167171
<div>
168172
<ButtonWithConfirmDialog
169173
buttonView="outlined"
@@ -180,7 +184,11 @@ function OperationsActions({operation, database, refreshTable}: OperationsAction
180184
</ButtonWithConfirmDialog>
181185
</div>
182186
</Tooltip>
183-
<Tooltip openDelay={0} content={i18n('header_cancel')} placement="right">
187+
<Tooltip
188+
openDelay={0}
189+
content={i18n('header_cancel')}
190+
placement={['left', 'left-end', 'left-start', 'top', 'bottom']}
191+
>
184192
<div>
185193
<ButtonWithConfirmDialog
186194
buttonView="outlined"

0 commit comments

Comments
 (0)