From e6b2b43504a2b020f98fdd0a2f0cd0e8c8128065 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Thu, 13 Oct 2022 15:02:40 -0400 Subject: [PATCH] chore(@storybook): add about view to storybook, refactor about view to use calls from store instead of global --- storybook/main.qml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/storybook/main.qml b/storybook/main.qml index cafae9ba94..57ce96c90f 100644 --- a/storybook/main.qml +++ b/storybook/main.qml @@ -97,6 +97,12 @@ ApplicationWindow { onPageSelected: root.currentPage = page } + + StatusNavigationListItem { + title: "AboutView" + selected: viewLoader.source.toString().includes(title) + onClicked: mainPageView.page(title); + } } }