diff --git a/public/assets/js/require-table.js b/public/assets/js/require-table.js index ac94aa68..ee04aa20 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;