prevent typeError for undefined button when logged out

pull/1/head
ansuz 2020-11-04 12:26:53 +05:30
parent c4e1b5f7d4
commit 0f4013505d
1 changed files with 3 additions and 1 deletions

View File

@ -2070,7 +2070,9 @@ define([
// Import template
var $template = common.createButton('importtemplate', true, {}, openTemplatePicker);
$template.appendTo(toolbar.$drawer);
if ($template && typeof($template.appendTo) === 'function') {
$template.appendTo(toolbar.$drawer);
}
})();
}