fix: phone check shutdown modal

This commit is contained in:
Daan Wijns 2023-02-19 12:28:31 +01:00
parent f0ddc603bd
commit ff9f1594cd
3 changed files with 4 additions and 1 deletions

View file

@ -1,5 +1,5 @@
<template>
<v-dialog v-model="dialog" scrollable max-width="750px" :content-class="isPhone ? 'rounded-0' : 'rounded-form'" :fullscreen="isPhone">
<v-dialog v-model="dialog" scrollable max-width="750px" :content-class="phoneLayout ? 'rounded-0' : 'rounded-form'" :fullscreen="false">
<v-card>
<v-card-title class="pa-0">
<v-toolbar-title class="ma-4 primarytext--text">

View file

@ -8,6 +8,7 @@
"lib": ["WebWorker", "DOM"],
"module": "esnext",
"moduleResolution": "node",
"experimentalDecorators": true,
"paths": {
"@/*": ["src/*"]
},

View file

@ -121,6 +121,8 @@ export default defineConfig(({ command, mode }) => {
extensions: ['.js', '.json', '.jsx', '.ts', '.tsx', '.vue']
},
server: {
host: '0.0.0.0',
port: 3000,
proxy: {
'/api': `${proxyTarget}:${qBittorrentPort}`
}