Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
spring-boot-admin
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
spring-boot-admin
Commits
a98d95db
Commit
a98d95db
authored
Mar 18, 2018
by
Johannes Edmeier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix back-/forward-navigation for application list when item is selected
parent
1a9e7774
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
applications-list.vue
...rc/main/frontend/views/applications/applications-list.vue
+6
-3
No files found.
spring-boot-admin-server-ui/src/main/frontend/views/applications/applications-list.vue
View file @
a98d95db
...
...
@@ -101,10 +101,13 @@
}),
methods
:
{
select
(
name
)
{
this
.
$router
.
push
({
name
:
'applications'
,
params
:
{
selected
:
name
}});
this
.
$router
.
replace
({
name
:
'applications'
,
params
:
{
selected
:
name
}});
},
deselect
()
{
this
.
$router
.
push
({
name
:
'applications'
});
deselect
(
event
)
{
if
(
event
&&
event
.
target
instanceof
HTMLAnchorElement
)
{
return
;
}
this
.
$router
.
replace
({
name
:
'applications'
});
},
showDetails
(
instance
)
{
this
.
$router
.
push
({
name
:
'instance/details'
,
params
:
{
instanceId
:
instance
.
id
}});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment