From aa608c25116ec63d853d2df81ddd300bd538e4e0 Mon Sep 17 00:00:00 2001 From: Eider Oliveira Date: Fri, 8 May 2026 14:22:38 -0300 Subject: [PATCH] fix(vuetify): allow NoGutters(false) to explicitly disable gutters Previously NoGutters only set the attribute when v=true, making it impossible to explicitly set no-gutters="false" to override a parent default. Now the attribute is always set regardless of the boolean value. --- ui/vuetify/row.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 }