Make the issues app use the global id picker, fix jsonb issues, and fix the global id picker.

This commit is contained in:
2024-04-14 13:47:28 +01:00
parent e2c0f82ec0
commit 96cb6f4b12
4 changed files with 10 additions and 50 deletions

View File

@ -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>
`;