Remove cba on non-owned pads

pull/1/head
yflory 2020-04-22 10:44:16 +02:00
parent ee1061be10
commit 37bbb815f0
1 changed files with 1 additions and 0 deletions

View File

@ -452,6 +452,7 @@ define([
markers.ready();
common.getPadMetadata(null, function (md) {
if (md && md.error) { return; }
if (!Array.isArray(md.owners)) { return void markers.setState(false); }
if (!common.isOwned(md.owners)) { return; }
// We're the owner: add the button and enable the colors if needed
mkColorByAuthor(framework, markers);