File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/Umbraco.Web.UI.Client/src/views/dictionary Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 5050 </ tr >
5151 </ thead >
5252 < tbody >
53- < tr ng-repeat ="item in vm.filtered = (vm.items | filter: { 'name': vm.filter.searchTerm }) " class ="cursor-pointer ">
53+ < tr ng-repeat ="item in vm.filtered = (vm.items | filter: { 'name': vm.filter.searchTerm }) " ng-click =" vm.clickItem(item.id) " class ="cursor-pointer ">
5454 < th >
55- < button type =" button " ng-style ="item.style " class ="btn-reset bold " ng-click =" vm.clickItem(item.id) " > {{item.name}}</ button >
55+ < span ng-style ="item.style " class ="bold "> {{item.name}}</ span >
5656 </ th >
5757 < td ng-repeat ="column in item.translations | orderBy:'displayName' ">
58- < button type =" button " class =" btn-reset " ng-click =" vm.clickItem(item.id) " >
58+ < div >
5959 < umb-icon icon ="{{ column.hasTranslation ? 'icon-check' : 'icon-alert' }} "
6060 class ="{{ column.hasTranslation ? 'color-green' : 'color-red' }} ">
6161 </ umb-icon >
6262 < span class ="sr-only ">
6363 < localize ng-if ="column.hasTranslation " key ="visuallyHiddenTexts_hasTranslation "> Has translation</ localize >
6464 < localize ng-if ="!column.hasTranslation " key ="visuallyHiddenTexts_noTranslation "> Missing translation</ localize >
6565 </ span >
66- </ button >
66+ </ div >
6767 </ td >
6868 </ tr >
6969 </ tbody >
You can’t perform that action at this time.
0 commit comments