From dd1c878fdfe21e7731861717808170b840b9c72b Mon Sep 17 00:00:00 2001 From: Chenlei Hu Date: Tue, 26 Nov 2024 11:26:46 -0800 Subject: [PATCH] [Electron] Fix path validation on typing in input box (#1708) --- src/components/install/InstallLocationPicker.vue | 2 +- src/components/install/MigrationPicker.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/install/InstallLocationPicker.vue b/src/components/install/InstallLocationPicker.vue index 9026eb08b..a68ea5642 100644 --- a/src/components/install/InstallLocationPicker.vue +++ b/src/components/install/InstallLocationPicker.vue @@ -16,7 +16,7 @@ v-model="installPath" class="w-full" :class="{ 'p-invalid': pathError }" - @change="validatePath" + @update:modelValue="validatePath" />