From f0b76057bb078ce0a98ed24ad23bc0b5858a7fba Mon Sep 17 00:00:00 2001 From: "xiaozhe.ma" Date: Tue, 23 Jul 2024 09:40:15 +0900 Subject: [PATCH] =?UTF-8?q?BUG539:=E8=A9=B3=E7=B4=B0=E7=94=BB=E9=9D=A2?= =?UTF-8?q?=E8=A1=A8=E7=A4=BA=E6=99=82=E3=81=AE=E3=83=9C=E3=82=BF=E3=83=B3?= =?UTF-8?q?=E6=8A=BC=E3=81=99=E3=82=A4=E3=83=99=E3=83=B3=E3=83=88=E8=A8=AD?= =?UTF-8?q?=E5=AE=9A=E3=81=A7=E3=81=8D=E3=81=AA=E3=81=84=E9=9A=9C=E5=AE=B3?= =?UTF-8?q?=E5=AF=BE=E5=BF=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/right/FieldInput.vue | 2 +- frontend/src/types/KintoneEvents.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/right/FieldInput.vue b/frontend/src/components/right/FieldInput.vue index 0ca8c77..1457677 100644 --- a/frontend/src/components/right/FieldInput.vue +++ b/frontend/src/components/right/FieldInput.vue @@ -80,7 +80,7 @@ export default defineComponent({ const appDg = ref(); const show = ref(false); const selectedField = ref(props.modelValue); - const selectedFields =ref(!props.modelValue?[]: [props.modelValue]); + const selectedFields =computed(()=>!selectedField.value?[]: [selectedField.value]); const store = useFlowEditorStore(); const isSelected = computed(() => { return selectedField.value !== null && typeof selectedField.value === 'object' && ('name' in selectedField.value) diff --git a/frontend/src/types/KintoneEvents.ts b/frontend/src/types/KintoneEvents.ts index da6db3d..240aa64 100644 --- a/frontend/src/types/KintoneEvents.ts +++ b/frontend/src/types/KintoneEvents.ts @@ -294,7 +294,7 @@ export class KintoneEventManager { 'app.record.index' ), new kintoneEventGroup( - 'app.record.detail.show.customButtonClick', + 'app.record.index.show.customButtonClick', 'ボタンをクリックした時', [], 'app.record.index'