文件操作 - appNotifications.ts
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/grafana/public/app/types/appNotifications.ts
编辑文件内容
export interface AppNotification { id: number; severity: AppNotificationSeverity; icon: string; title: string; text: string; component?: React.ReactElement; timeout: AppNotificationTimeout; } export enum AppNotificationSeverity { Success = 'success', Warning = 'warning', Error = 'error', Info = 'info', } export enum AppNotificationTimeout { Warning = 5000, Success = 3000, Error = 7000, } export interface AppNotificationsState { appNotifications: AppNotification[]; }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件