提交 20c04aee 编写于 作者: U unknown

修复内容管理模块的一个语言错误

上级 1cb42471
......@@ -983,9 +983,9 @@ MWF.xApplication.process.TaskCenter.Process = new Class({
var appName = "";
if( typeOf( this.data.applicationName ) === "string" ){
appName = this.data.applicationName;
appName = this.data.applicationName || "";
}else if( typeOf( this.data.applicationName ) === "object" && this.data.applicationName.name ){
appName = this.data.applicationName.name;
appName = this.data.applicationName.name || "";
}
this.textNode.set({
"text": this.data.name+((this.data.applicationName) ? " -- ("+appName+")" : ""),
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册