From 02572cc8095fff009a055dc33f487f85e593eca1 Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Tue, 18 Nov 2025 11:35:13 +0100 Subject: [PATCH] chore: playground improvements --- packages/experiments-playground/src/App.vue | 9 +++++++++ packages/experiments-playground/src/router/index.ts | 8 +++++++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/packages/experiments-playground/src/App.vue b/packages/experiments-playground/src/App.vue index 57b48183..e4bc2db4 100644 --- a/packages/experiments-playground/src/App.vue +++ b/packages/experiments-playground/src/App.vue @@ -77,3 +77,12 @@ const queryPage = computed({ + + diff --git a/packages/experiments-playground/src/router/index.ts b/packages/experiments-playground/src/router/index.ts index 76e01987..4db00065 100644 --- a/packages/experiments-playground/src/router/index.ts +++ b/packages/experiments-playground/src/router/index.ts @@ -52,7 +52,13 @@ const r_group = normalizeRouteRecord({ }, query: [ - new MatcherPatternQueryParam('group', 'isGroup', 'value', PARAM_PARSER_INT), + new MatcherPatternQueryParam( + 'group', + 'isGroup', + 'value', + PARAM_PARSER_INT, + 0 + ), ], }) -- 2.47.3