We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a9e777 commit a98d95dCopy full SHA for a98d95d
spring-boot-admin-server-ui/src/main/frontend/views/applications/applications-list.vue
@@ -101,10 +101,13 @@
101
}),
102
methods: {
103
select(name) {
104
- this.$router.push({name: 'applications', params: {selected: name}});
+ this.$router.replace({name: 'applications', params: {selected: name}});
105
},
106
- deselect() {
107
- this.$router.push({name: 'applications'});
+ deselect(event) {
+ if (event && event.target instanceof HTMLAnchorElement) {
108
+ return;
109
+ }
110
+ this.$router.replace({name: 'applications'});
111
112
showDetails(instance) {
113
this.$router.push({name: 'instance/details', params: {instanceId: instance.id}});
0 commit comments