Skip to content

Commit

Permalink
Add a link to the documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
JackWilb committed Mar 2, 2023
1 parent dd6a09e commit b5e84cd
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/components/ToolBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@
<v-list>
<v-list-item link @click="exportNetwork"><v-list-item-title>Export Network</v-list-item-title></v-list-item>
<v-list-item link @click="showTrrackVis"><v-list-item-title>Show History</v-list-item-title></v-list-item>
<v-list-item link @click="redirectToDocs"><v-list-item-title>Get Help</v-list-item-title></v-list-item>


</v-list>
</v-menu>

Expand Down Expand Up @@ -121,6 +124,10 @@ const props = defineProps<{
}>();
const searchTerm = ref<string | undefined>(undefined);
function redirectToDocs() {
window.location.href = 'https://multinet-app.readthedocs.io/en/latest/index.html';
}
</script>

<style>
Expand Down

0 comments on commit b5e84cd

Please sign in to comment.