Skip to content

Commit

Permalink
update error message when edit unavailable (#734)
Browse files Browse the repository at this point in the history
  • Loading branch information
eve-git authored Oct 20, 2023
1 parent 8440fd6 commit 63b4748
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "name-request",
"version": "5.2.14",
"version": "5.2.15",
"private": true,
"appName": "Name Request UI",
"sbcName": "SBC Common Components",
Expand Down
19 changes: 15 additions & 4 deletions src/components/dialogs/error.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,24 @@
<v-dialog v-model="showModal">
<v-card>
<v-card-title class="d-flex justify-space-between">
<div>Name Request encountered an error</div>
<div v-if="isEditLockError">
Changes Temporarily Unavailable
</div>
<div v-else>
Name Request encountered an error
</div>
</v-card-title>

<div v-if="isEditLockError">
<v-card-text class="copy-normal pt-8">
The Name Request is presently undergoing examination or editing by another user
and cannot be modified or canceled at this time.
Another user may be making updates to this Name Request and this action is unavailable at this time.
Please try again later. Typical reasons are as follows:
<br>
<br>
<ul>
<li>Another user may be editing this name request</li>
<li>BC Registries staff may be currently reviewing this Name Request</li>
<li>Status of this Name Request has changed</li>
</ul>
<br>
<br>
For assistance, please contact BC Registries staff:
Expand Down

0 comments on commit 63b4748

Please sign in to comment.