@things-factory/meta-ui 8.0.44 → 8.0.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1398,7 +1398,8 @@ export class MetaUiUtil {
1398
1398
  */
1399
1399
  static async commonButtonCallScenario(pageView, buttonName, action, params) {
1400
1400
  // 시나리오 호출
1401
- let response = await ServiceUtil.callScenario(buttonName, action.name, params);
1401
+ const options = { confirmMessage: action.confirmMessage };
1402
+ let response = await ServiceUtil.callScenario(buttonName, action.name, params, true, options);
1402
1403
  // 처리 중 에러가 발생했거나 시나리오 호출 후 처리가 없으면 return
1403
1404
  if (!response.errors && action.after && ValueUtil.isNotEmpty(action.after)) {
1404
1405
  let afterParams = null;