Skip to content

Commit

Permalink
do not wrap property column header elements
Browse files Browse the repository at this point in the history
  • Loading branch information
carueda committed Jun 20, 2016
1 parent 20c710c commit f1dd0e4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/app/js/ont/v2r/v2r-data-editor.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@

<th colspan="2" class="v2rTermColHeaderCell" style="width: 5%"></th>

<th ng-repeat="p in vocab.properties track by $index" ng-init="p_index=$index">
<th ng-repeat="p in vocab.properties track by $index" ng-init="p_index=$index"
style="white-space: nowrap">
{{vm.getLabel(p)}}
<div ng-click="vm.editVocabProperty(p)" class="btn btn-link"
ng-disabled="someEditInProgress() || attrTableform.$waiting">
Expand Down

0 comments on commit f1dd0e4

Please sign in to comment.