Skip to content

Commit

Permalink
Fix privacy request approve disabled state
Browse files Browse the repository at this point in the history
  • Loading branch information
Fajfa committed Nov 8, 2023
1 parent a57a6c0 commit c72961e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion client/web/privacy/src/components/Common/EditorToolbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
<c-button-submit
v-if="submitShow"
:data-test-id="buttonLabelCypressId(submitLabel)"
:disabled="submitDisabled || processing"
:disabled="submitDisabled"
:processing="processing"
:text="submitLabel"
size="lg"
Expand Down
1 change: 1 addition & 0 deletions client/web/privacy/src/views/Privacy/Request/View.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@

<c-input-confirm
v-else
:disabled="!request || !isPending"
:processing="processingApprove"
:text="$t('approve')"
variant="primary"
Expand Down

0 comments on commit c72961e

Please sign in to comment.