Skip to content

Commit

Permalink
FIX: 一部の型エラーの修正
Browse files Browse the repository at this point in the history
  • Loading branch information
sabonerune committed Mar 1, 2023
1 parent 1c26419 commit cb7203d
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions src/components/EngineManageDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,11 @@
</template>
<template v-slot:error>
{{
getEngineDirValidationMessage(newEngineDirValidationState)
newEngineDirValidationState
? getEngineDirValidationMessage(
newEngineDirValidationState
)
: undefined
}}
</template>
</q-input>
Expand All @@ -168,7 +172,7 @@
dense
readonly
:error="
newEngineDirValidationState &&
newEngineDirValidationState != undefined &&
newEngineDirValidationState !== 'ok'
"
placeholder="エンジンフォルダの場所"
Expand All @@ -190,7 +194,11 @@
</template>
<template v-slot:error>
{{
getEngineDirValidationMessage(newEngineDirValidationState)
newEngineDirValidationState
? getEngineDirValidationMessage(
newEngineDirValidationState
)
: undefined
}}
</template>
</q-input>
Expand Down

0 comments on commit cb7203d

Please sign in to comment.