Skip to content

Commit

Permalink
improve speed dials
Browse files Browse the repository at this point in the history
  • Loading branch information
mikonse committed May 13, 2022
1 parent d14d55f commit 2de759d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions web/src/components/transactions/TransactionList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,14 @@ export default function TransactionList({ group }) {
>
<SpeedDialAction
icon={<ShoppingCart />}
tooltipTitle="Create Purchase"
tooltipTitle="Purchase"
tooltipOpen
onClick={() => setShowPurchaseCreateDialog(true)}
/>
<SpeedDialAction
icon={<CompareArrows />}
tooltipTitle="Create Transfer"
tooltipTitle="Transfer"
tooltipOpen
onClick={() => setShowTransferCreateDialog(true)}
/>
</SpeedDial>
Expand Down
6 changes: 4 additions & 2 deletions web/src/pages/accounts/AccountList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -383,12 +383,14 @@ export default function AccountList({ group }) {
>
<SpeedDialAction
icon={<PersonalAccountIcon />}
tooltipTitle="Create Personal Account"
tooltipTitle="Personal"
tooltipOpen
onClick={() => setShowPersonalAccountCreationModal(true)}
/>
<SpeedDialAction
icon={<ClearingAccountIcon />}
tooltipTitle="Create Clearing Account"
tooltipTitle="Clearing"
tooltipOpen
onClick={openCreateDialog}
/>
</SpeedDial>
Expand Down

0 comments on commit 2de759d

Please sign in to comment.