diff --git a/frontend/src/components/left/EventTree.vue b/frontend/src/components/left/EventTree.vue index 746a9f0..170326e 100644 --- a/frontend/src/components/left/EventTree.vue +++ b/frontend/src/components/left/EventTree.vue @@ -34,7 +34,7 @@ - + @@ -58,6 +58,19 @@ export default defineComponent({ const store = useFlowEditorStore(); const showDialog = ref(false); const tree = ref(); + const fieldTypes=[ + 'RADIO_BUTTON', + 'DROP_DOWN', + 'CHECK_BOX', + 'MULTI_SELECT', + 'USER_SELECT', + 'GROUP_SELECT', + 'ORGANIZATION_SELECT', + 'DATE', + 'DATETIME', + 'TIME', + 'SINGLE_LINE_TEXT', + 'NUMBER']; // const eventTree=ref(kintoneEvents); // const selectedFlow = store.currentFlow; @@ -148,7 +161,8 @@ export default defineComponent({ addChangeEvent, deleteEvent, closeDg, - store + store, + fieldTypes } } }); diff --git a/frontend/src/types/KintoneEvents.ts b/frontend/src/types/KintoneEvents.ts index 240aa64..1a23c07 100644 --- a/frontend/src/types/KintoneEvents.ts +++ b/frontend/src/types/KintoneEvents.ts @@ -287,12 +287,12 @@ export class KintoneEventManager { 'app.record.index.edit.submit.success', 'app.record.index' ), - new kintoneEventForChange( - 'app.record.index.edit.change', - 'インライン編集のフィールド値を変更したとき', - [], - 'app.record.index' - ), + // new kintoneEventForChange( + // 'app.record.index.edit.change', + // 'インライン編集のフィールド値を変更したとき', + // [], + // 'app.record.index' + // ), new kintoneEventGroup( 'app.record.index.show.customButtonClick', 'ボタンをクリックした時',