1.1.0 #352

Merged
edraft merged 145 commits from 1.1.0 into master 2023-08-24 17:50:25 +02:00
Showing only changes of commit 223946ad76 - Show all commits

View File

@ -107,15 +107,15 @@ export class AutoRolesRulesComponent extends ComponentWithTable implements OnIni
).subscribe(data => {
if (data.discord.guilds) {
this.guild = data.discord.guilds[0];
this.emojis = this.guild.emojis
.map(x => {
return { label: x.name, value: x };
});
this.roles = this.guild.roles
.map(x => {
return { label: x.name, value: x };
});
}
this.emojis = this.guild.emojis
.map(x => {
return { label: x.name, value: x };
});
this.roles = this.guild.roles
.map(x => {
return { label: x.name, value: x };
});
this.spinner.hideSpinner();
});
this.loadNextPage();