@things-factory/meta-ui 8.0.44 → 8.0.51
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.
- package/client/utils/meta-ui-util.js +2 -1
- package/client/utils/service-util.js +4 -2
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-client/utils/meta-ui-util.js +2 -1
- package/dist-client/utils/meta-ui-util.js.map +1 -1
- package/dist-client/utils/service-util.d.ts +2 -1
- package/dist-client/utils/service-util.js +4 -2
- package/dist-client/utils/service-util.js.map +1 -1
- package/package.json +2 -2
|
@@ -1398,7 +1398,8 @@ export class MetaUiUtil {
|
|
|
1398
1398
|
*/
|
|
1399
1399
|
static async commonButtonCallScenario(pageView, buttonName, action, params) {
|
|
1400
1400
|
// 시나리오 호출
|
|
1401
|
-
|
|
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;
|