Browse Source

Merge #343

343: All tooltips to action icons in CfdTable r=klochowicz a=klochowicz

It makes it a bit easier to use, especially for newcomers

Co-authored-by: Mariusz Klochowicz <mariusz@klochowicz.com>
testing
bors[bot] 3 years ago
committed by GitHub
parent
commit
45c0db34db
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 19
      frontend/src/components/cfdtables/CfdTable.tsx

19
frontend/src/components/cfdtables/CfdTable.tsx

@ -22,6 +22,7 @@ import {
Td,
Th,
Thead,
Tooltip,
Tr,
useToast,
VStack,
@ -179,14 +180,16 @@ export function CfdTable(
Header: "Action",
accessor: ({ actions, order_id }) => {
const actionIcons = actions.map((action) => {
return (<IconButton
key={action}
colorScheme={colorSchemaForAction(action)}
aria-label={action}
icon={iconForAction(action)}
onClick={() => postAction(order_id, action)}
isLoading={isActioning}
/>);
return (<Tooltip label={action}>
<IconButton
key={action}
colorScheme={colorSchemaForAction(action)}
aria-label={action}
icon={iconForAction(action)}
onClick={() => postAction(order_id, action)}
isLoading={isActioning}
/>
</Tooltip>);
});
return <HStack>{actionIcons}</HStack>;

Loading…
Cancel
Save