Skip to content

Commit 0a029fc

Browse files
committed
Add missing description for jmx operation input parameters
fixes codecentric#531
1 parent 3dd252d commit 0a029fc

File tree

1 file changed

+32
-9
lines changed

1 file changed

+32
-9
lines changed
Lines changed: 32 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,34 @@
1+
<!--
2+
~ Copyright 2014-2017 the original author or authors.
3+
~
4+
~ Licensed under the Apache License, Version 2.0 (the "License");
5+
~ you may not use this file except in compliance with the License.
6+
~ You may obtain a copy of the License at
7+
~
8+
~ http://www.apache.org/licenses/LICENSE-2.0
9+
~
10+
~ Unless required by applicable law or agreed to in writing, software
11+
~ distributed under the License is distributed on an "AS IS" BASIS,
12+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
~ See the License for the specific language governing permissions and
14+
~ limitations under the License.
15+
-->
16+
117
<form class="form">
2-
<p>Please input the arguments for {{$ctrl.invocation.signature}} <small class="muted">: {{$ctrl.invocation.descriptor.ret}}</small></p>
3-
<div class="control-group" ng-repeat="arg in $ctrl.invocation.descriptor.args" ng-class="{ error : $ctrl.arguments[$index].error }">
4-
<label class="control-label" for="{{arg.name}}" style="word-break: break-all;">{{arg.name}} <small class="muted" style="word-break: break-all;" ng-bind="arg.type"></small></label>
5-
<div class="controls">
6-
<sba-java-type-input sba-type="{{arg.type}}" sba-decription="{{arg.desc}}" sba-change="$ctrl.updateArg($index, value, error)"></sba-java-type-input>
7-
<span class="help-inline" ng-bind="$ctrl.arguments[$index].error"></span>
8-
</div>
9-
</div>
10-
<button class="btn btn-primary" ng-click="$ctrl.applyParameters()">Execute</button>
18+
<p>Please input the arguments for {{$ctrl.invocation.signature}}
19+
<small class="muted">: {{$ctrl.invocation.descriptor.ret}}</small>
20+
</p>
21+
<div class="control-group" ng-repeat="arg in $ctrl.invocation.descriptor.args"
22+
ng-class="{ error : $ctrl.arguments[$index].error }">
23+
<label class="control-label" for="{{arg.name}}" style="word-break: break-all;">{{arg.name}}<br>
24+
<small class="muted" style="word-break: break-all;" ng-bind="arg.type"></small>
25+
</label>
26+
<div class="controls">
27+
<sba-java-type-input sba-type="{{arg.type}}"
28+
sba-change="$ctrl.updateArg($index, value, error)"></sba-java-type-input>
29+
<span class="help-inline" ng-bind="$ctrl.arguments[$index].error"></span>
30+
<span class="help-block" ng-bind="arg.desc"></span>
31+
</div>
32+
</div>
33+
<button class="btn btn-primary" ng-click="$ctrl.applyParameters()">Execute</button>
1134
</form>

0 commit comments

Comments
 (0)