|
|
@ -61,6 +61,12 @@ export class GfAccountSelectorComponent |
|
|
}); |
|
|
}); |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
public readonly sortedAccounts = computed(() => { |
|
|
|
|
|
return [...this.accounts()].sort((a, b) => { |
|
|
|
|
|
return a.name.toLowerCase().localeCompare(b.name.toLowerCase()); |
|
|
|
|
|
}); |
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
private readonly ngControl = inject(NgControl, { |
|
|
private readonly ngControl = inject(NgControl, { |
|
|
optional: true, |
|
|
optional: true, |
|
|
self: true |
|
|
self: true |
|
|
|