From b5e84cdc8ff6e6fbbc9a46a5f52939b2cbf4b658 Mon Sep 17 00:00:00 2001 From: Jack Wilburn Date: Thu, 2 Mar 2023 12:49:22 -0700 Subject: [PATCH] Add a link to the documentation --- src/components/ToolBar.vue | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/components/ToolBar.vue b/src/components/ToolBar.vue index bb80ccb..3dc5482 100644 --- a/src/components/ToolBar.vue +++ b/src/components/ToolBar.vue @@ -86,6 +86,9 @@ Export Network Show History + Get Help + + @@ -121,6 +124,10 @@ const props = defineProps<{ }>(); const searchTerm = ref(undefined); + +function redirectToDocs() { + window.location.href = 'https://multinet-app.readthedocs.io/en/latest/index.html'; +}