fix some range
Some checks are pending
Test / build (lts/*, ubuntu-latest) (push) Waiting to run
Test / build (lts/*, windows-latest) (push) Waiting to run

This commit is contained in:
Dustella 2025-03-20 12:48:39 +08:00
parent 6f72a1a611
commit 0909d5a32c
Signed by: Dustella
GPG Key ID: 07C9FA0DB5373B8D
3 changed files with 8 additions and 8 deletions

View File

@ -11,7 +11,7 @@
import DenseFramework from '~/components/DenseFramework.vue'
const selectedT = ref<'5' | '10' | '16'>('5')
const selectedH = ref(90)
const selectedH = ref(50)
const selectedRange = ref('-30')
const selectedYear = ref('2008')
const ranges = ['-30', '-60', '30', '60']
@ -62,7 +62,7 @@ const fetchUrl = computed(() => {
id="start"
v-model:model-value="selectedH" :format-options="{
useGrouping: false,
}" :default-value="94"
}" :default-value="60"
:step="10"
:max="60"
:min="0"

View File

@ -11,7 +11,7 @@
import DenseFramework from '~/components/DenseFramework.vue'
const selectedT = ref<'5' | '10' | '16'>('5')
const selectedH = ref(90)
const selectedH = ref(50)
const selectedRange = ref('-30')
const selectedK = ref(0)
const selectedYear = ref('2008')
@ -63,10 +63,10 @@ const fetchUrl = computed(() => {
id="start"
v-model:model-value="selectedH" :format-options="{
useGrouping: false,
}" :default-value="94"
}" :default-value="50"
:step="10"
:max="110"
:min="70"
:max="60"
:min="0"
>
<NumberFieldContent>
<NumberFieldDecrement />

View File

@ -14,10 +14,10 @@ export default defineConfig({
server: {
proxy: {
'/api': {
target: 'http://kuroneko:18200',
target: 'http://localhost:58620',
},
'/api/ping': {
target: 'ws://kuroneko:18200',
target: 'ws://localhost:58620',
ws: true,
rewriteWsOrigin: false,
},