summaryrefslogtreecommitdiff
path: root/packages/frontend/src/paths/instance/reserves/list/Table.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2021-06-15 23:43:18 -0300
committerSebastian <sebasjm@gmail.com>2021-06-15 23:43:50 -0300
commitb93d3e3ac9dfa9b3e7459b980eda68fd8d0f8a04 (patch)
treee32b5c92fdfd2aec89c4ecf3eee10e4ea8ac6272 /packages/frontend/src/paths/instance/reserves/list/Table.tsx
parentd674e28bcd25e8e24697d2b871c1d8218686ec65 (diff)
downloadmerchant-backoffice-b93d3e3ac9dfa9b3e7459b980eda68fd8d0f8a04.tar.gz
merchant-backoffice-b93d3e3ac9dfa9b3e7459b980eda68fd8d0f8a04.tar.bz2
merchant-backoffice-b93d3e3ac9dfa9b3e7459b980eda68fd8d0f8a04.zip
remove animation
Diffstat (limited to 'packages/frontend/src/paths/instance/reserves/list/Table.tsx')
-rw-r--r--packages/frontend/src/paths/instance/reserves/list/Table.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/paths/instance/reserves/list/Table.tsx b/packages/frontend/src/paths/instance/reserves/list/Table.tsx
index 5977b8b..a76edf6 100644
--- a/packages/frontend/src/paths/instance/reserves/list/Table.tsx
+++ b/packages/frontend/src/paths/instance/reserves/list/Table.tsx
@@ -120,12 +120,12 @@ function Table({ instances, onNewTip, onSelect, onDelete }: TableProps): VNode {
<td onClick={(): void => onSelect(i)} style={{ cursor: 'pointer' }} >{i.committed_amount}</td>
<td class="is-actions-cell right-sticky">
<div class="buttons is-right">
- <button class="button is-small is-danger"
+ <button class="button is-small is-danger has-tooltip-left"
data-tooltip={i18n`delete selected reserve from the database`}
type="button" onClick={(): void => onDelete(i)}>
Delete
</button>
- <button class="button is-small is-info"
+ <button class="button is-small is-info has-tooltip-left"
data-tooltip={i18n`authorize new tip from selected reserve`}
type="button" onClick={(): void => onNewTip(i)}>
New Tip
@@ -169,7 +169,7 @@ function TableWithoutFund({ instances, onSelect, onDelete }: TableProps): VNode
<td onClick={(): void => onSelect(i)} style={{ cursor: 'pointer' }} >{i.merchant_initial_amount}</td>
<td class="is-actions-cell right-sticky">
<div class="buttons is-right">
- <button class="button is-small is-danger jb-modal" type="button"
+ <button class="button is-small is-danger jb-modal has-tooltip-left" type="button"
data-tooltip={i18n`delete selected reserve from the database`}
onClick={(): void => onDelete(i)}>
Delete