Check if urls is null
Check if node.urls is null and set scope.currentUrls to null and return
This commit is contained in:
committed by
Nathan Woulfe
parent
f93e9e2fe0
commit
143d2e7e30
@@ -313,7 +313,7 @@
|
||||
|
||||
function updateCurrentUrls() {
|
||||
// never show URLs for element types (if they happen to have been created in the content tree)
|
||||
if (scope.node.isElement) {
|
||||
if (scope.node.isElement || scope.node.urls === null) {
|
||||
scope.currentUrls = null;
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user