Skip to content

Commit

Permalink
more explicitly ignore jobs events
Browse files Browse the repository at this point in the history
  • Loading branch information
rstijerina committed May 20, 2024
1 parent 8e045d2 commit 3edc1ca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ function NotificationService(
* @param {Object} msg
*/
function processToastr(e, msg) {
if (msg?.event_type !== 'data_depot') {
if (msg.event_type === 'job' || msg.event_type ==='WEB' || msg.event_type === 'interactive_session_ready') {
return;
}

Expand Down

0 comments on commit 3edc1ca

Please sign in to comment.