Fix the issue where long domain names or titles overlap the next column.

This commit is contained in:
yoan
2024-10-30 11:57:16 +08:00
parent c1cefe0e7f
commit b97d77c848
5 changed files with 19 additions and 25 deletions

View File

@@ -26,7 +26,13 @@ export type NotifyChannels = {
mail?: NotifyChannelMail;
};
export type NotifyChannel = NotifyChannelDingTalk | NotifyChannelLark | NotifyChannelTelegram | NotifyChannelWebhook | NotifyChannelServerChan | NotifyChannelMail;
export type NotifyChannel =
| NotifyChannelDingTalk
| NotifyChannelLark
| NotifyChannelTelegram
| NotifyChannelWebhook
| NotifyChannelServerChan
| NotifyChannelMail;
export type NotifyChannelDingTalk = {
accessToken: string;
@@ -60,8 +66,8 @@ export type NotifyChannelMail = {
receiverAddresses: string;
smtpHostAddr: string;
smtpHostPort: string;
username:string;
password:string;
username: string;
password: string;
enabled: boolean;
};