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
f5cb00b7
Commit
f5cb00b7
authored
Aug 06, 2016
by
Johannes Edmeier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Sort jmx beans by domain and name
fixes #243
parent
79f261c5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
javaTypeInput.js
...r-ui/modules/applications-jmx/components/javaTypeInput.js
+1
-1
jmx.html
...t-admin-server-ui/modules/applications-jmx/views/jmx.html
+1
-1
No files found.
spring-boot-admin-server-ui/modules/applications-jmx/components/javaTypeInput.js
View file @
f5cb00b7
...
...
@@ -50,7 +50,7 @@ module.exports = {
default
:
return
null
;
}
}
)(
);
}
()
);
ctrl
.
selectOptions
=
(
function
()
{
switch
(
ctrl
.
type
)
{
...
...
spring-boot-admin-server-ui/modules/applications-jmx/views/jmx.html
View file @
f5cb00b7
...
...
@@ -24,7 +24,7 @@
</sba-accordion-heading>
<sba-accordion-body>
<ul
class=
"nav nav-tabs nav-stacked"
ng-show=
"!domain.selectedBean"
style=
"transition: 0.6s ease-in-out left"
>
<li
ng-repeat=
"bean in domain.beans track by bean.id"
><a
ng-click=
"domain.selectedBean = bean"
><small
class=
"muted"
>
MBean
</small>
{{bean.name}}
</a></li>
<li
ng-repeat=
"bean in domain.beans
| orderBy:'name'
track by bean.id"
><a
ng-click=
"domain.selectedBean = bean"
><small
class=
"muted"
>
MBean
</small>
{{bean.name}}
</a></li>
</ul>
<sba-jmx-bean
application=
"application"
bean=
"domain.selectedBean"
ng-show=
"domain.selectedBean"
></sba-jmx-bean>
</sba-accordion-body>
...
...
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