We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14da347 commit 3de169cCopy full SHA for 3de169c
1 file changed
ui/src/layouts/Group.vue
@@ -117,8 +117,8 @@ export default {
117
widgetStyles () {
118
return (widget) => {
119
const styles = {}
120
- const height = widget.props.height || widget.layout.height
121
- const width = widget.props.width || widget.layout.width
+ const height = widget.props.height
+ const width = widget.props.width
122
styles['grid-row-end'] = `span ${height}`
123
styles['grid-template-rows'] = `repeat(${height}, minmax(var(--widget-row-height), auto))`
124
styles['grid-column-end'] = `span min(${this.getWidgetWidth(+width)}, var(--layout-columns))`
0 commit comments