Skip to content

Commit

Permalink
修正Rule的测试运行页面无法提交的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
entropy-cloud committed Aug 8, 2024
1 parent 928ec73 commit 0a87636
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,6 @@ public interface RuleErrors {
define("nop.err.rule.invalid-output-cell", "输出单元格格式不正确:{cellPos}");

ErrorCode ERR_RULE_INPUT_VAR_NOT_ALLOW_EMPTY =
define("nop.err.rule.input-var-not-allow-empty", "输入变量不允许为空:name={varName},displayName={}",
define("nop.err.rule.input-var-not-allow-empty", "输入变量不允许为空:name={varName},displayName={displayName}",
ARG_VAR_NAME, ARG_DISPLAY_NAME);
}
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public interface NopRuleErrors {
String ARG_PATH = "path";
ErrorCode ERR_RULE_UNKNOWN_RULE_DEFINITION =
define("nop.err.rule.unknown-rule-definition",
"未知的规则定义:ruleName={}", ARG_RULE_NAME, ARG_RULE_GROUP);
"未定义或者未发布的规则定义:ruleName={ruleName}", ARG_RULE_NAME, ARG_RULE_GROUP);

ErrorCode ERR_RULE_INVALID_DAO_RESOURCE_PATH =
define("nop.err.rule.invalid-dao-resource-path",
Expand Down
2 changes: 1 addition & 1 deletion nop-web/src/main/resources/_vfs/nop/web/xlib/web.xlib
Original file line number Diff line number Diff line change
Expand Up @@ -796,7 +796,7 @@
if(dlgProps?.actions?.length > 0){
dlgProps.actions = dlgProps.actions.map(a=>xpl('thisLib:NormalizeAction',a,{}));
}else{
dlgProps.actions = null;
dlgProps.remove('actions');
}
if(dialog?.noActions)
dlgProps.actions = []
Expand Down

0 comments on commit 0a87636

Please sign in to comment.