Skip to content

Commit 672f748

Browse files
author
Dave Conway-Jones
committed
Let spacer also pickup custom class
1 parent 64ca6f5 commit 672f748

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
### 3.1.8: Maintenance Release
33

44
- Use Node-RED CSS vars for ui-bas to help themeing. PR #763
5+
- Let spacer also have custom class
56

67
### 3.1.7: Maintenance Release
78

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
"compression": "^1.7.4",
8989
"gridstack": "^0.6.4",
9090
"serve-static": "^1.14.2",
91-
"socket.io": "~4.4.1"
91+
"socket.io": "^4.4.1"
9292
},
9393
"devDependencies": {
9494
"angular": "~1.8.2",
@@ -130,7 +130,7 @@
130130
"jshint": "~2.13.3",
131131
"justgage": "~1.4.3",
132132
"less": "^3.13.1",
133-
"material-design-icons-iconfont": "~6.4.2",
133+
"material-design-icons-iconfont": "^6.4.2",
134134
"moment": "~2.29.1",
135135
"sprintf-js": "^1.1.2",
136136
"streamqueue": "~1.1.2",
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
<md-card
2-
ui-card-size="{{ me.item.width }}x{{ me.item.height }}"
3-
layout="{{ me.item.layout }}"
4-
layout-align="{{ me.item.layoutAlign }}"
5-
class="nr-dashboard-spacer"
6-
ng-class="{'nr-dashboard-disabled':me.item.disabled}">
1+
<md-card
2+
ui-card-size="{{ me.item.width }}x{{ me.item.height }}"
3+
layout="{{ me.item.layout }}"
4+
layout-align="{{ me.item.layoutAlign }}"
5+
class="nr-dashboard-spacer"
6+
ng-class="[{'nr-dashboard-disabled':me.item.disabled}, me.item.className]">
77
</md-card>

0 commit comments

Comments
 (0)