Make the issues app use the global id picker, fix jsonb issues, and fix the global id picker.
This commit is contained in:
@ -160,7 +160,7 @@ class TfNavigationElement extends LitElement {
|
||||
style="text-overflow: ellipsis; overflow: hidden; white-space: nowrap; max-width: 100%"
|
||||
>
|
||||
${this.identities.map(
|
||||
(x) => html`<option ?selected=${x === this.identity}>${self.names[x]}${self.names[x] === x ? '' : html` - ${x}`}</option>`
|
||||
(x) => html`<option ?selected=${x === this.identity} value=${x}>${self.names[x]}${self.names[x] === x ? '' : html` - ${x}`}</option>`
|
||||
)}
|
||||
</select>
|
||||
`;
|
||||
|
Reference in New Issue
Block a user