2022-01-17 05:53:32 +00:00
|
|
|
<div ng-if="!$ctrl.labels.length"> There are no labels for this node. </div>
|
2018-10-07 22:44:08 +00:00
|
|
|
|
2022-08-01 08:14:43 +00:00
|
|
|
<div class="col-sm-12 form-inline !p-0" ng-if="$ctrl.labels.length">
|
|
|
|
<div ng-repeat="label in $ctrl.labels" class="mt-1">
|
2020-08-09 22:59:00 +00:00
|
|
|
<div class="input-group col-sm-5 input-group-sm">
|
|
|
|
<span class="input-group-addon">name</span>
|
|
|
|
<input type="text" class="form-control" ng-model="label.key" placeholder="e.g. com.example.foo" ng-change="$ctrl.updateLabel(label)" />
|
|
|
|
</div>
|
|
|
|
<div class="input-group col-sm-5 input-group-sm">
|
|
|
|
<span class="input-group-addon">value</span>
|
|
|
|
<input type="text" class="form-control" ng-model="label.value" placeholder="e.g. bar" ng-change="$ctrl.updateLabel(label)" />
|
|
|
|
</div>
|
2022-07-26 23:18:06 +00:00
|
|
|
<button class="btn btn-light" type="button" ng-click="$ctrl.removeLabel($index)">
|
2022-08-01 08:14:43 +00:00
|
|
|
<pr-icon icon="'trash-2'" feather="true" class-name="'icon-secondary icon-md'"></pr-icon>
|
2020-08-09 22:59:00 +00:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|