|
1 | 1 | <template> |
2 | 2 | <v-main class="fill-height vertical-container"> |
3 | | - <v-navigation-drawer fixed app persistent class="background" mobile-breakpoint="sm" width="75" color="primaryLight"> |
| 3 | + <v-navigation-drawer fixed app permanent class='background' width='75' color='primaryLight'> |
4 | 4 | <v-layout column fill-height> |
5 | | - <v-list subheader class="align-center" @click="resetStates"> |
6 | | - <v-list-item to="/" @click.stop="() => { |
| 5 | + <v-list subheader class='align-center' @click='resetStates'> |
| 6 | + <v-list-item to='/' @click.stop='() => { |
7 | 7 | projectStore.setCurrentProjectId(null); |
8 | | - }"> |
| 8 | + }'> |
9 | 9 | <v-list-item-content> |
10 | | - <div class="align-center text-center"> |
11 | | - <img src="@/assets/logo_v2.png" alt="Giskard icon" width="45px" /> |
12 | | - <span class="caption">Projects</span> |
| 10 | + <div class='align-center text-center'> |
| 11 | + <img src='@/assets/logo_v2.png' alt='Giskard icon' width='45px' /> |
| 12 | + <span class='caption'>Projects</span> |
13 | 13 | </div> |
14 | 14 | </v-list-item-content> |
15 | 15 | </v-list-item> |
|
125 | 125 | </template> |
126 | 126 |
|
127 | 127 | <script lang="ts" setup> |
128 | | -import { useUserStore } from "@/stores/user"; |
129 | | -import { useMainStore } from "@/stores/main"; |
130 | | -import { useProjectStore } from "@/stores/project"; |
131 | | -import { useDebuggingSessionsStore } from "@/stores/debugging-sessions"; |
132 | | -import { useTestSuitesStore } from "@/stores/test-suites"; |
133 | | -import { computed, onMounted, onUnmounted, ref, watch } from "vue"; |
| 128 | +import { useUserStore } from '@/stores/user'; |
| 129 | +import { useMainStore } from '@/stores/main'; |
| 130 | +import { useProjectStore } from '@/stores/project'; |
| 131 | +import { useDebuggingSessionsStore } from '@/stores/debugging-sessions'; |
| 132 | +import { useTestSuitesStore } from '@/stores/test-suites'; |
| 133 | +import { computed, onMounted, onUnmounted, ref, watch } from 'vue'; |
134 | 134 | import { useRoute } from 'vue-router/composables'; |
135 | | -import moment from "moment/moment"; |
136 | | -import { state, client } from "@/socket"; |
| 135 | +import moment from 'moment/moment'; |
| 136 | +import { state, client } from '@/socket'; |
137 | 137 |
|
138 | 138 | const route = useRoute(); |
139 | 139 | const mainStore = useMainStore(); |
|
0 commit comments