diff --git a/public/assets/js/require-table.js b/public/assets/js/require-table.js
index ac94aa6846c80aacd71b60c577409066bc16c866..ee04aa20293e38a4e25e85670b5f90c4b3c4b824 100755
--- a/public/assets/js/require-table.js
+++ b/public/assets/js/require-table.js
@@ -706,7 +706,7 @@ define(['jquery', 'bootstrap'], function ($, undefined) {
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;