Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

17519 - Indicate to user that cancelled/expired NRs will not be returned by NR search #2569

Merged
merged 1 commit into from
Sep 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 3 additions & 9 deletions auth-web/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 auth-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "auth-web",
"version": "2.4.25",
"version": "2.4.26",
"appName": "Auth Web",
"sbcName": "SBC Common Components",
"private": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,13 @@

<template #no-data>
<p class="pl-5 font-weight-bold">
{{ lookupType === LookupType.NR ? 'No Name Request found' : 'No active B.C. business found' }}
{{ lookupType === LookupType.NR ? 'No active Name Request found' : 'No active B.C. business found' }}
</p>
<p class="pl-5">
Ensure you have entered the correct business name or number.
{{ lookupType === LookupType.NR ?
'Ensure you have entered a Name Request that has not expired or been cancelled.' :
'Ensure you have entered the correct business name or number.'
}}
</p>
</template>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div>
<v-row class="mx-0 mt-n4">
Retrieve an existing business or Name Request to manage:
Retrieve an existing business or active Name Request to manage:
</v-row>
<v-row
:key="clearSearch"
Expand Down