Skip to content

Commit ffc66e7

Browse files
committed
#12 Fix tags editor
1 parent 164a6b6 commit ffc66e7

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

ui/app/views/directives/updatable-tags.html

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33

44
<span class="tags-list flexwrap">
55
<span ng-repeat="tag in value" class="label label-primary mb-xxxs mr-xxxs">{{tag.text}}</span>
6-
<small ng-show="active">
6+
<!-- -->
7+
<small ng-show="active" style="line-height:18px;" class="mb-xxxs mr-xxxs">
78
<a href class="clickable" tooltip-popup-delay='500' uib-tooltip="edit">
89
<i class="glyphicon glyphicon-pencil" ng-click="edit()"></i>
910
</a>

ui/app/views/directives/updatable-user.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<span ng-hide="updatable.updating" ng-init="active = false" ng-mouseenter="active = true" ng-mouseleave="active = false">
22
<span class="updatable-value" ng-bind="getUserInfo.get(value) | getField:'name'" style="vertical-align:top"></span>
33
<small ng-show="active">
4-
<a style="cursor: pointer;" target="_self" tooltip-popup-delay='500' uib-tooltip="edit">
4+
<a class="clickable" target="_self" tooltip-popup-delay='500' uib-tooltip="edit">
55
<i class="glyphicon glyphicon-pencil" ng-click="edit()"></i>
66
</a>
77
</small>

0 commit comments

Comments
 (0)