diff --git a/public/assets/js/require-table.js b/public/assets/js/require-table.js
index 83871950..ece2eec5 100755
--- a/public/assets/js/require-table.js
+++ b/public/assets/js/require-table.js
@@ -805,7 +805,7 @@ define(['jquery', 'bootstrap', 'moment', 'moment/locale/zh-cn', 'bootstrap-table
display = __(value.charAt(0).toUpperCase() + value.slice(1));
}
var html = '' + (icon ? ' ' : '') + display + '';
- if (this.operate != false) {
+ if (typeof this.operate !== 'undefined' && this.operate != false) {
html = '' + html + '';
}
return html;