Merged PR 63: BUG539:詳細画面表示時のボタン押すイベント設定できない障害対応
原因:詳細画面のボタンクリックのイベントIDは間違っています。 対策:詳細画面のボタンクリックのイベントIDを修正します。 他の修正:フィールド選択UIの設定値を表示されない問題の修正 Related work items: #539
This commit is contained in:
@@ -80,7 +80,7 @@ export default defineComponent({
|
|||||||
const appDg = ref();
|
const appDg = ref();
|
||||||
const show = ref(false);
|
const show = ref(false);
|
||||||
const selectedField = ref(props.modelValue);
|
const selectedField = ref(props.modelValue);
|
||||||
const selectedFields =ref(!props.modelValue?[]: [props.modelValue]);
|
const selectedFields =computed(()=>!selectedField.value?[]: [selectedField.value]);
|
||||||
const store = useFlowEditorStore();
|
const store = useFlowEditorStore();
|
||||||
const isSelected = computed(() => {
|
const isSelected = computed(() => {
|
||||||
return selectedField.value !== null && typeof selectedField.value === 'object' && ('name' in selectedField.value)
|
return selectedField.value !== null && typeof selectedField.value === 'object' && ('name' in selectedField.value)
|
||||||
|
|||||||
@@ -294,7 +294,7 @@ export class KintoneEventManager {
|
|||||||
'app.record.index'
|
'app.record.index'
|
||||||
),
|
),
|
||||||
new kintoneEventGroup(
|
new kintoneEventGroup(
|
||||||
'app.record.detail.show.customButtonClick',
|
'app.record.index.show.customButtonClick',
|
||||||
'ボタンをクリックした時',
|
'ボタンをクリックした時',
|
||||||
[],
|
[],
|
||||||
'app.record.index'
|
'app.record.index'
|
||||||
|
|||||||
Reference in New Issue
Block a user