aboutsummaryrefslogtreecommitdiff
path: root/modern/src/SocketController.js
diff options
context:
space:
mode:
authorLucas Leite <lbl.lucasleite@gmail.com>2022-02-13 18:48:30 -0300
committerLucas Leite <lbl.lucasleite@gmail.com>2022-02-13 18:48:30 -0300
commitabadd4f29fd1fb7787fd0cf558855811e668251f (patch)
treebd9d114dacb62904cee2518a595078c11e2e2ea7 /modern/src/SocketController.js
parent51a5b5119688333a478c185e20668529d10aa022 (diff)
downloadtrackermap-web-abadd4f29fd1fb7787fd0cf558855811e668251f.tar.gz
trackermap-web-abadd4f29fd1fb7787fd0cf558855811e668251f.tar.bz2
trackermap-web-abadd4f29fd1fb7787fd0cf558855811e668251f.zip
Changed notification approach
Diffstat (limited to 'modern/src/SocketController.js')
-rw-r--r--modern/src/SocketController.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/modern/src/SocketController.js b/modern/src/SocketController.js
index 69932fce..e178abb6 100644
--- a/modern/src/SocketController.js
+++ b/modern/src/SocketController.js
@@ -79,7 +79,6 @@ const SocketController = () => {
id: event.id,
message: `${devices[event.deviceId]?.name}: ${t(prefixString('event', event.type))}`,
show: true,
- close: () => setEvents(events.filter((e) => e.id !== event.id)),
})));
}, [events, devices]);
@@ -95,7 +94,7 @@ const SocketController = () => {
open={notification.show}
message={notification.message}
autoHideDuration={5000}
- onClose={notification.close}
+ onClose={() => setEvents(events.filter((e) => e.id !== notification.id))}
/>
))}
</>