Merge pull request #11850 from Budibase/remove-automation-tooltip

Remove tooltip from automation undo redo control
This commit is contained in:
Andrew Kingston 2023-09-25 14:05:08 +01:00 committed by GitHub
commit a5c428706e
1 changed files with 0 additions and 2 deletions

View File

@ -38,14 +38,12 @@
hoverable
on:click={store.undo}
disabled={!$store.canUndo}
tooltip="Undo latest change"
/>
<Icon
name="Redo"
hoverable
on:click={store.redo}
disabled={!$store.canRedo}
tooltip="Redo latest undo"
/>
</div>