diff --git a/light9/live/Light9DeviceSettings.ts b/light9/live/Light9DeviceSettings.ts --- a/light9/live/Light9DeviceSettings.ts +++ b/light9/live/Light9DeviceSettings.ts @@ -49,7 +49,7 @@ export class Light9DeviceSettings extend
- +
diff --git a/light9/web/EditChoice.ts b/light9/web/EditChoice.ts --- a/light9/web/EditChoice.ts +++ b/light9/web/EditChoice.ts @@ -63,12 +63,13 @@ function setupDrop( export class EditChoice extends LitElement { @property() uri?: NamedNode @property({ type: Boolean }) nounlink = false; + @property({ type: Boolean }) rename = false; static styles = [ css` :host { display: inline-block; background: #141448; - min-width: 10em; + /* min-width: 10em; */ padding: 3px 8px; } .dragging { @@ -88,7 +89,7 @@ export class EditChoice extends LitEleme ` return html` - + ${this.nounlink ? html`` : unlink} `; }