Skip to content

Commit

Permalink
Merge pull request #1636 from ProcessMaker/bugfix/FOUR-9463
Browse files Browse the repository at this point in the history
FOUR-9463 it is not possible to click on undo-redo buttons
  • Loading branch information
ryancooley authored Jul 21, 2023
2 parents d29adb0 + d9b9542 commit bfb6652
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/railBottom/undoRedoControl/UndoRedoControl.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
class="ur-button"
data-cy="undo-control"
:disabled="!canUndo"
v-b-tooltip.hover
v-b-tooltip.hover.viewport.d50="{ customClass: 'no-pointer-events' }"
:title="$t('Undo')"
@click="undo"
>
Expand All @@ -15,7 +15,7 @@
class="ur-button"
data-cy="redo-control"
:disabled="!canRedo"
v-b-tooltip.hover
v-b-tooltip.hover.viewport.d50="{ customClass: 'no-pointer-events' }"
:title="$t('Redo')"
@click="redo"
>
Expand Down

0 comments on commit bfb6652

Please sign in to comment.