Skip to content

Commit

Permalink
Fix TS Checks
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Oct 7, 2024
1 parent b9022a3 commit 36f6ba1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion api/web/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
</div>
</header>

<Loading v-if='loading && !$route.path.includes("configure", "login")' />
<Loading v-if='loading && !$route.path.includes("configure") && !$route.path.includes("login")' />
<router-view
v-else
:user='user'
Expand Down
6 changes: 3 additions & 3 deletions api/web/src/components/Configure.vue
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@
</template>

<script lang='ts'>
import { std } from '/src/std.ts';
import type { Server } from './types.ts';
import { std } from '../std.ts';
import type { Server } from '../types.ts';
import {
TablerLoading,
TablerInput
Expand All @@ -111,7 +111,7 @@ export default {
}
},
mounted: async function() {
let server: Server;
let server;
try {
server = await std('/api/server') as Server;
} catch (err) {
Expand Down

0 comments on commit 36f6ba1

Please sign in to comment.