Skip to content

Commit 221a339

Browse files
committed
fixed bug empty labels in setting page
1 parent 5a34c12 commit 221a339

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Modules/SimplCommerce.Module.Core/wwwroot/admin/configuration/configuration.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ <h2>{{::vm.translate.get('Application Settings')}}</h2>
44
</div>
55
<div class="panel-body">
66
<form name="configurationForm" class="form-horizontal">
7-
<div class="col-sm-offset-2 bg-danger" ng-show="vm.validationErrors">
7+
<div class="col-sm-offset-4 bg-danger" ng-show="vm.validationErrors">
88
<ul>
99
<li ng-repeat="error in vm.validationErrors">{{error}}</li>
1010
</ul>
1111
</div>
1212
<div class="form-group" ng-repeat="item in vm.settings">
13-
<label class="col-sm-2 control-label">{{item.key}}</label>
14-
<div class="col-sm-10">
13+
<label class="col-sm-4 control-label">{{item.id}}</label>
14+
<div class="col-sm-8">
1515
<input name="name" ng-model="item.value" class="form-control"/>
1616
</div>
1717
</div>
1818
<div class="form-group">
19-
<div class="col-sm-offset-2 col-sm-10">
19+
<div class="col-sm-offset-4 col-sm-8">
2020
<button class="btn btn-primary" ng-click="vm.save()"><span class="glyphicon glyphicon-ok"></span> Save</button>
2121
<button ui-sref="dashboard" class="btn btn-default">Cancel</button>
2222
</div>

0 commit comments

Comments
 (0)