Change platform control from select to autocomplete in account dialog (#2429)

* Change platform control from select to autocomplete in account dialog

* Update changelog
This commit is contained in:
Kevin
2023-10-08 19:17:55 +02:00
committed by GitHub
parent 8236091477
commit 37ff7acf04
6 changed files with 97 additions and 19 deletions

View File

@@ -55,12 +55,8 @@ export class InfoService {
public async get(): Promise<InfoItem> {
const info: Partial<InfoItem> = {};
let isReadOnlyMode: boolean;
const platforms = (
await this.platformService.getPlatforms({
orderBy: { name: 'asc' }
})
).map(({ id, name }) => {
return { id, name };
const platforms = await this.platformService.getPlatforms({
orderBy: { name: 'asc' }
});
let systemMessage: string;