guard against a typeError if there are no owners

pull/1/head
ansuz 2020-02-21 10:50:59 -05:00
parent fe0e02a421
commit 075eddb1db
1 changed files with 1 additions and 1 deletions

View File

@ -981,7 +981,7 @@ define([
var state = data.restricted ? Messages.allow_enabled : Messages.allow_disabled;
content.push(h('label', Messages._getKey('allow_label', [state])));
if (data.restricted) {
var _allowed = Util.deduplicateString(data.owners.concat(data.allowed));
var _allowed = Util.deduplicateString((data.owners || []).concat(data.allowed));
var _allowedGrid = getUserList(common, _allowed);
content.push(_allowedGrid.div);
}