From bdcb66308292bf7c4fb9af7590c5f4cf8f5715e0 Mon Sep 17 00:00:00 2001 From: Matthew Vine <32849887+MattTheCuber@users.noreply.github.com> Date: Thu, 14 Nov 2024 14:21:03 -0500 Subject: [PATCH] fix(layout): singlepagelayout vue warnings --- trame_vuetify/ui/vuetify3.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trame_vuetify/ui/vuetify3.py b/trame_vuetify/ui/vuetify3.py index 99e12f9..f12cad8 100644 --- a/trame_vuetify/ui/vuetify3.py +++ b/trame_vuetify/ui/vuetify3.py @@ -112,12 +112,12 @@ def __init__(self, _server, template_name="main", **kwargs): vuetify3.VIcon("mdi-autorenew", size="small") with vuetify3.VTooltip(location="top"): - with vuetify3.Template(v_slot_activator="{ props }"): + with vuetify3.Template(v_slot_activator=("{ props }",)): vuetify3.VIcon( "mdi-help-circle", size=14, classes="mr-4", - v_bind="props", + v_bind=("props",), ) html.Pre(get_trame_versions())