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
d9cdf339
Commit
d9cdf339
authored
Mar 17, 2015
by
Johannes Stelzer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
allow yml-files in properties-section
parent
134d83a8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
propsCtrl.js
...min-server-ui/app/js/controller/apps/details/propsCtrl.js
+1
-1
joinArray.js
spring-boot-admin-server-ui/app/js/filter/joinArray.js
+1
-1
No files found.
spring-boot-admin-server-ui/app/js/controller/apps/details/propsCtrl.js
View file @
d9cdf339
...
...
@@ -22,7 +22,7 @@ module.exports = function ($scope, application) {
.
success
(
function
(
env
)
{
$scope
.
props
=
[];
for
(
var
attr
in
env
)
{
if
(
attr
.
indexOf
(
'['
)
!==
-
1
&&
attr
.
indexOf
(
'.properties]'
)
!==
-
1
)
{
if
(
attr
.
indexOf
(
'['
)
!==
-
1
&&
(
attr
.
indexOf
(
'.properties]'
)
!==
-
1
||
attr
.
indexOf
(
'.yml]'
))
)
{
$scope
.
props
.
push
({
key
:
attr
,
value
:
env
[
attr
]
...
...
spring-boot-admin-server-ui/app/js/filter/joinArray.js
View file @
d9cdf339
...
...
@@ -17,7 +17,7 @@
module
.
exports
=
function
()
{
return
function
(
input
,
separator
)
{
if
(
!
Array
.
isArray
(
input
)
)
{
if
(
!
Array
.
isArray
(
input
)
)
{
return
input
;
}
else
{
return
input
.
join
(
separator
);
...
...
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