File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " node-red-node-ui-list" ,
3
- "version" : " 0.3.5 " ,
3
+ "version" : " 0.3.6 " ,
4
4
"description" : " Node-RED Dashboard UI widget node for simple list" ,
5
5
"author" : " Hiroyasu Nishiyama" ,
6
6
"contributors" : [
Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ module.exports = function(RED) {
57
57
var desc = ( allowHTML ? String . raw `<span ng-bind-html="item.description | trusted"></span>` : String . raw `{{item.description}}` ) ;
58
58
var icon = String . raw `
59
59
<img src="{{item.icon}}" class="md-avatar" ng-if="(item.icon !== undefined) && (item.icon !== null)">
60
- <md-icon aria-label="{{item.desc}}" style="height:unset; margin-top:auto; color:` + config . tcol + String . raw `" ng-if="(item.icon === undefined) && (item.icon_name !== undefined)"><ui-icon icon="{{item.icon_name}}"></ui-icon></md-icon>
60
+ <md-icon aria-label="{{item.desc}}" style="color:` + config . tcol + String . raw `" ng-if="(item.icon === undefined) && (item.icon_name !== undefined)"><ui-icon icon="{{item.icon_name}}"></ui-icon></md-icon>
61
61
<span class="md-avatar" style="font-size:x-large; height:unset;" ng-if="(item.icon === undefined) && (item.icon_unicode !== undefined)"><h1>{{item.icon_unicode}}</h1></span>
62
62
<md-icon class="md-avatar-icon" aria-label="{{item.desc}}" ng-if="(item.icon === null) && (item.icon_name === undefined) && (item.icon_unicode === undefined)"></md-icon>
63
63
` ;
You can’t perform that action at this time.
0 commit comments