Skip to content

Commit

Permalink
Changed case of words.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuznietsov committed Oct 12, 2023
1 parent 2196fe4 commit 33c8192
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/src/demo/tables/editableTable/ProjectTableDemo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -207,22 +207,22 @@ export function ProjectTableDemo() {
<Panel cx={ css.container }>
<FlexRow spacing="18" padding="24" vPadding="18" borderBottom={ true } background="gray5">
<FlexCell width="auto">
<Tooltip content={ getKeybindingWithControl('Add new task', 'Enter') } placement="bottom">
<Tooltip content={ getKeybindingWithControl('Add New Task', 'Enter') } placement="bottom">
<Button size="30" icon={ add } caption="Add Task" onClick={ () => insertTask('bottom') } />
</Tooltip>
</FlexCell>
<FlexCell width="auto">
<Tooltip content={ getKeybindingWithControl('Add new task below', 'Enter') } placement="bottom">
<Tooltip content={ getKeybindingWithControl('Add New Task Below', 'Enter') } placement="bottom">
<IconButton icon={ insertAfter } onClick={ () => insertTask('bottom', selectedItem) } />
</Tooltip>
</FlexCell>
<FlexCell width="auto">
<Tooltip content={ getKeybindingWithControl('Add new task above', 'Shift + Enter') } placement="bottom">
<Tooltip content={ getKeybindingWithControl('Add New Task Above', 'Shift + Enter') } placement="bottom">
<IconButton icon={ insertBefore } onClick={ () => insertTask('top', selectedItem) } />
</Tooltip>
</FlexCell>
<FlexCell width="auto">
<Tooltip content={ getKeybindingWithControl('Delete task', 'Backspace') } placement="bottom">
<Tooltip content={ getKeybindingWithControl('Delete Task', 'Backspace') } placement="bottom">
<IconButton icon={ deleteLast } onClick={ () => deleteSelectedItem() } />
</Tooltip>
</FlexCell>
Expand Down

0 comments on commit 33c8192

Please sign in to comment.