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
075bd93d
Commit
075bd93d
authored
Dec 10, 2015
by
Johannes Edmeier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add health-url to desktop-notification.
This should avoid confusion as in #131
parent
a0ffe33a
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
overviewCtrl.js
...ng-boot-admin-server-ui/app/js/controller/overviewCtrl.js
+1
-1
No files found.
spring-boot-admin-server-ui/app/js/controller/overviewCtrl.js
View file @
075bd93d
...
...
@@ -19,7 +19,7 @@ module.exports = function ($scope, $location, $interval, $state, $filter, Applic
var
createNote
=
function
(
app
)
{
var
title
=
app
.
name
+
(
app
.
statusInfo
.
status
===
'UP'
?
' is back '
:
' went '
)
+
app
.
statusInfo
.
status
;
var
options
=
{
tag
:
app
.
id
,
body
:
'Instance '
+
app
.
id
,
body
:
'Instance '
+
app
.
id
+
'
\
n'
+
app
.
healthUrl
,
icon
:
(
app
.
statusInfo
.
status
===
'UP'
?
'img/ok.png'
:
'img/error.png'
),
timeout
:
15000
,
url
:
$state
.
href
(
'apps.details'
,
{
id
:
app
.
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