1.1.8 #384

Merged
edraft merged 9 commits from 1.1.8 into support 2023-09-29 19:20:42 +02:00
5 changed files with 5 additions and 5 deletions
Showing only changes of commit 3117f617d9 - Show all commits

View File

@ -124,7 +124,7 @@
"success": "auto-role {} wurde entfernt :D"
},
"react": {
"success": "Alle Reaktionen wurden hinzugefügt",
"success": "Alle Reaktionen wurden hinzugefügt"
},
"rule": {
"add": {

View File

@ -258,7 +258,7 @@ class AutoRoleGroup(DiscordCommandABC):
@remove.autocomplete("auto_role")
async def react_autocomplete(
self, interaction: discord.Interaction, current: str
self, interaction: discord.Interaction, current: str
) -> TList[app_commands.Choice[str]]:
return await self._auto_role_auto_complete(interaction, current)

View File

@ -1,6 +1,6 @@
{
"name": "kdb-web",
"version": "1.1.7",
"version": "1.1.8",
"scripts": {
"ng": "ng",
"update-version": "ts-node update-version.ts",

View File

@ -199,7 +199,7 @@ export class AutoRolesComponent extends ComponentWithTable implements OnInit, On
return;
}
if (!newAutoRole.id || !newAutoRole.channelId && !newAutoRole.messageId) {
if (!newAutoRole.id && !this.isEditingNew || !newAutoRole.channelId && !newAutoRole.messageId) {
return;
}

View File

@ -2,6 +2,6 @@
"WebVersion": {
"Major": "1",
"Minor": "1",
"Micro": "7"
"Micro": "8"
}
}