diff --git a/ui/vuetify/row.go b/ui/vuetify/row.go index e9329269a..fdf3f8ac9 100644 --- a/ui/vuetify/row.go +++ b/ui/vuetify/row.go @@ -24,7 +24,9 @@ func (b *VRowBuilder) Dense(v bool) (r *VRowBuilder) { } func (b *VRowBuilder) NoGutters(v bool) (r *VRowBuilder) { - b.tag.Attr(":no-gutters", fmt.Sprint(v)) + if v { + b.tag.Attr(":no-gutters", fmt.Sprint(v)) + } return b }