Skip to content
Merged
Changes from 1 commit
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
Next Next commit
ui: donot remove account, domain from query on public ip filter change
Currently, when changing filter on public IP view (Free, Reserved,
Allocated) it removes the account and domain values from query. This PR
prevents that as public IP view filters have no relation with
account/domain.

Signed-off-by: Abhishek Kumar <abhishek.mrt22@gmail.com>
  • Loading branch information
shwstppr committed Sep 4, 2025
commit 0407629f599ed6890e6bc688b332d729adc66501
6 changes: 4 additions & 2 deletions ui/src/views/AutogenView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -1723,8 +1723,10 @@ export default {
const query = Object.assign({}, this.$route.query)
delete query.templatefilter
delete query.isofilter
delete query.account
delete query.domainid
if (!['publicip'].includes(this.$route.name)) {
delete query.account
delete query.domainid
}
delete query.state
delete query.annotationfilter
Comment thread
DaanHoogland marked this conversation as resolved.
Outdated
if (this.$route.name === 'template') {
Expand Down