Skip to content
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
e8be495
Adding filters
johnsimons Apr 15, 2025
131e986
Adding more filters
johnsimons Apr 16, 2025
66cde35
Adding date range
johnsimons Apr 16, 2025
97af90f
Fixing formatting for filters
johnsimons Apr 16, 2025
aa8ec15
Loading from query params
johnsimons Apr 17, 2025
1e06723
Move loading to parent not store
johnsimons Apr 17, 2025
b765ccf
Adding missing sort options
johnsimons Apr 17, 2025
7e92df4
Load endpoints from parent too
johnsimons Apr 17, 2025
1486ffa
Fixed missing watchers
johnsimons Apr 17, 2025
68f183e
reinstate refresh control
PhilBastian Apr 22, 2025
ca02788
make heading controls sticky
PhilBastian Apr 22, 2025
b7c7bb6
address some review comments
PhilBastian Apr 22, 2025
39f917d
- format date in dropdown the same as on the filter bar
PhilBastian Apr 23, 2025
bca1b69
- apply DateRange type to store
PhilBastian Apr 23, 2025
cdaed35
typed field names
PhilBastian Apr 23, 2025
570df83
changes from code review
PhilBastian Apr 23, 2025
1a87a60
change datetime display to match daterange filter
PhilBastian Apr 23, 2025
3e811fb
styling fixes
PhilBastian Apr 23, 2025
03de2be
make filter styles consistent
PhilBastian Apr 23, 2025
7d8aebb
fix styling to match rest of SP
PhilBastian Apr 23, 2025
82e368c
revert to non-component search input to temporarily fix test
PhilBastian Apr 23, 2025
6bca529
comment correct line :/
PhilBastian Apr 23, 2025
669b6ea
also comment now unused import
PhilBastian Apr 23, 2025
65d0fed
fix application tests that relied on lowercase
PhilBastian Apr 24, 2025
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
26 changes: 26 additions & 0 deletions src/Frontend/package-lock.json

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

1 change: 1 addition & 0 deletions src/Frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"@tinyhttp/content-disposition": "^2.2.2",
"@vue-flow/controls": "^1.1.2",
"@vue-flow/core": "^1.42.5",
"@vuepic/vue-datepicker": "^11.0.2",
"bootstrap": "^5.3.5",
"bootstrap-icons": "^1.11.3",
"codemirror": "^6.0.1",
Expand Down
8 changes: 8 additions & 0 deletions src/Frontend/src/assets/status_archived.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions src/Frontend/src/assets/status_failed.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 7 additions & 0 deletions src/Frontend/src/assets/status_repeated_failed.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions src/Frontend/src/assets/status_resolved.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions src/Frontend/src/assets/status_retry_issued.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions src/Frontend/src/assets/status_successful.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion src/Frontend/src/components/FilterInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ const debounceUpdateModel = debounce((value: string) => {
model.value = value;
}, 600);

watch(model, (newValue) => {
localInput.value = newValue;
Copy link
Contributor

Choose a reason for hiding this comment

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

i don't understand this change... seems to make localinput changes cause circular updates back to itself?

Copy link
Contributor

Choose a reason for hiding this comment

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

will investigate separately and raise another PR if needed

});

watch(localInput, (newValue) => {
debounceUpdateModel(newValue);
});
Expand All @@ -34,7 +38,6 @@ watch(localInput, (newValue) => {

div.filter-input {
position: relative;
width: 280px;
height: 36px;
}

Expand Down
Loading