Skip to content

Commit

Permalink
fix: login
Browse files Browse the repository at this point in the history
  • Loading branch information
Zephyruso committed Dec 11, 2024
1 parent eb779f6 commit 80bc57a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/components/proxies/LatencyTag.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ let countUp: CountUp | null = null
onMounted(() => {
countUp = new CountUp(latencyRef.value, latency.value, {
duration: 1,
separator: '',
enableScrollSpy: true,
})
countUp.start()
Expand Down
6 changes: 3 additions & 3 deletions src/components/settings/BackendSwitch.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="flex gap-2">
<div class="join flex">
<select
class="select select-bordered select-xs w-48"
class="join-item select select-bordered select-xs w-48"
v-model="activeUuid"
>
<option
Expand All @@ -13,7 +13,7 @@
</option>
</select>
<button
class="btn btn-circle btn-xs"
class="btn join-item btn-xs"
@click="addBackend"
>
<PlusIcon class="h-4 w-4" />
Expand Down
2 changes: 1 addition & 1 deletion src/views/SetupPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ if (query.has('hostname')) {
port: Number(query.get('port')),
password: query.get('secret') as string,
})
} else {
} else if (backendList.value.length === 0) {
handleSubmit(form, true)
}
</script>

0 comments on commit 80bc57a

Please sign in to comment.