@@ -1404,10 +1414,11 @@ export function NotificationSettings() {
updateChannel("email", "password", e.target.value)}
+ disabled={!editMode}
/>
updateChannel("email", "to_addresses", e.target.value)}
+ disabled={!editMode}
/>
updateChannel("email", "subject_prefix", e.target.value)}
+ disabled={!editMode}
/>
diff --git a/AppImage/scripts/notification_channels.py b/AppImage/scripts/notification_channels.py
index f464b560..53ff059d 100644
--- a/AppImage/scripts/notification_channels.py
+++ b/AppImage/scripts/notification_channels.py
@@ -874,7 +874,7 @@ class EmailChannel(NotificationChannel):
CHANNEL_TYPES = {
'telegram': {
'name': 'Telegram',
- 'config_keys': ['bot_token', 'chat_id'],
+ 'config_keys': ['bot_token', 'chat_id', 'topic_id'],
'class': TelegramChannel,
},
'gotify': {