diff --git a/frontend/src/Settings/Notifications/Notifications/Notification.js b/frontend/src/Settings/Notifications/Notifications/Notification.js index 9fb6a1ef0..9030cc198 100644 --- a/frontend/src/Settings/Notifications/Notifications/Notification.js +++ b/frontend/src/Settings/Notifications/Notifications/Notification.js @@ -66,6 +66,7 @@ class Notification extends Component { onHealthIssue, onHealthRestored, onApplicationUpdate, + onManualInteractionRequired, supportsOnGrab, supportsOnDownload, supportsOnUpgrade, @@ -76,7 +77,8 @@ class Notification extends Component { supportsOnMovieFileDeleteForUpgrade, supportsOnHealthIssue, supportsOnHealthRestored, - supportsOnApplicationUpdate + supportsOnApplicationUpdate, + supportsOnManualInteractionRequired } = this.props; return ( @@ -178,7 +180,15 @@ class Notification extends Component { } { - !onGrab && !onDownload && !onRename && !onHealthIssue && !onHealthRestored && !onApplicationUpdate && !onMovieDelete && !onMovieFileDelete ? + supportsOnManualInteractionRequired && onManualInteractionRequired ? + : + null + } + + { + !onGrab && !onDownload && !onRename && !onHealthIssue && !onHealthRestored && !onApplicationUpdate && !onMovieDelete && !onMovieFileDelete && !onManualInteractionRequired ?