diff options
Diffstat (limited to 'frontend/src/components/Notifications.js')
-rw-r--r-- | frontend/src/components/Notifications.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/frontend/src/components/Notifications.js b/frontend/src/components/Notifications.js index 0b47b43..8356e80 100644 --- a/frontend/src/components/Notifications.js +++ b/frontend/src/components/Notifications.js @@ -66,6 +66,11 @@ class Notifications extends Component { n.description = `${n.message["processed_packets"]} packets processed`; n.variant = "blue"; return this.pushNotification(n); + case "timeline.range.large": + n.title = "timeline cropped"; + n.description = `the maximum range is 24h`; + n.variant = "red"; + return this.pushNotification(n); default: return null; } |