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
2 changes: 1 addition & 1 deletion app/components/search/ResultsBox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ const layout: ILayout = {
dropdown: Object.values(Submitted),
clickable: {
icon: computed(() =>
search.submittedDateOrder === 'asc' ? ArrowDownIcon : ArrowUpIcon
search.submittedDateOrder === 'asc' ? ArrowUpIcon : ArrowDownIcon
),
onClick: search.toggleSubmittedDateOrder,
},
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.44",
"version": "1.2.45",
"private": true,
"scripts": {
"build": "nuxt generate",
Expand Down
4 changes: 2 additions & 2 deletions app/store/search.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ export const useSearchStore = defineStore('search', () => {
const isLoading = ref(true)

const formattedSearchParams = computed(() => {
const params = {
order: `priorityCd:desc,submittedDate:${submittedDateOrder.value}`,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will now ignore the priority in sorting, right ? Meaning, if my newest NR is of standard priority it will still be shown above the high priority ones, is that what we want ?

const params = {
order: `submittedDate:${submittedDateOrder.value}`,
queue:
filters[SearchColumns.Status] === StatusSearchFilter.All
? ''
Expand Down
Loading