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'