Skip to content
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
1 change: 0 additions & 1 deletion app/components/app_footer/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
<script setup lang="ts">
const links = [
{ text: 'Home', route: '/', target: '_self' },
{ text: 'Release Notes', route: 'https://www.release-notes.bcregistry.gov.bc.ca' },
{ text: 'Disclaimer', route: 'https://www2.gov.bc.ca/gov/content/home/disclaimer' },
{ text: 'Privacy', route: 'https://www2.gov.bc.ca/gov/content/home/privacy' },
{ text: 'Accessibility', route: 'https://www2.gov.bc.ca/gov/content/home/accessibility' },
Expand Down
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "name-examination",
"version": "1.2.46",
"version": "1.2.47",
"private": true,
"scripts": {
"build": "nuxt generate",
Expand Down
4 changes: 3 additions & 1 deletion app/tests/store/search.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ describe('Search store tests', () => {
search.filters[SearchColumns.ApplicantFirstName] = testName

let expectedParams = new URLSearchParams({
order: 'priorityCd:desc,submittedDate:asc',
// this is to match current code, verify with business if this is correct
// order: 'priorityCd:desc,submittedDate:asc',
order: 'submittedDate:asc',
queue: Status.Hold,
consentOption: ConsentRequired.All,
ranking: Priority.All,
Expand Down
Loading