Skip to content

Commit

Permalink
fix: account reference dropdown header links
Browse files Browse the repository at this point in the history
Fixes the link rendering on the dropdown headers for the account
references and the account reference type.
  • Loading branch information
jniles committed May 18, 2019
1 parent c33886f commit f40a358
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@
</a>

<ul data-row-menu="{{row.entity.abbr}}" class="dropdown-menu-right" bh-dropdown-menu-auto-dropup uib-dropdown-menu>
<li class="dropdown-header text-ellipsis" style="max-width:250px;">
<a>{{row.entity.abbr}}</a>
</li>
<li class="dropdown-header text-ellipsis" style="max-width:250px;">{{row.entity.abbr}}</li>

<li class="divider"></li>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,23 @@
</a>

<ul data-row-menu="{{row.entity.label}}" class="dropdown-menu-right" bh-dropdown-menu-auto-dropup uib-dropdown-menu>
<li class="dropdown-header text-ellipsis" style="max-width:250px;">
<a> {{row.entity.label}} </a>
</li>

<li class="dropdown-header text-ellipsis" style="max-width:250px;">{{row.entity.label}}</li>

<li class="divider"></li>

<li>
<a data-method="edit-record" ng-click="grid.appScope.edit(row.entity)" href>
<i class="fa fa-edit"></i> <span translate>TABLE.COLUMNS.EDIT</span>
</a>
</li>
<li class="divider"></li>
</li>
<li class="divider"></li>
<li>
<a data-method="delete-record" ng-click="grid.appScope.remove(row.entity.id)" href>
<span class="text-danger">
<i class="fa fa-trash"></i> <span translate>FORM.BUTTONS.DELETE</span>
</span>
</a>
</li>
</li>
</ul>
</span>

Expand Down

0 comments on commit f40a358

Please sign in to comment.