diff --git a/frontend/src/Settings/Notifications/Notifications/Notification.js b/frontend/src/Settings/Notifications/Notifications/Notification.js index baf029184..a525a4e5f 100644 --- a/frontend/src/Settings/Notifications/Notifications/Notification.js +++ b/frontend/src/Settings/Notifications/Notifications/Notification.js @@ -65,6 +65,7 @@ class Notification extends Component { onHealthIssue, onHealthRestored, onApplicationUpdate, + onManualInteractionRequired, supportsOnGrab, supportsOnDownload, supportsOnUpgrade, @@ -75,7 +76,8 @@ class Notification extends Component { supportsOnEpisodeFileDeleteForUpgrade, supportsOnHealthIssue, supportsOnHealthRestored, - supportsOnApplicationUpdate + supportsOnApplicationUpdate, + supportsOnManualInteractionRequired } = this.props; return ( @@ -177,7 +179,15 @@ class Notification extends Component { } { - !onGrab && !onDownload && !onRename && !onHealthIssue && !onHealthRestored && !onApplicationUpdate && !onSeriesDelete && !onEpisodeFileDelete ? + supportsOnManualInteractionRequired && onManualInteractionRequired ? + : + null + } + + { + !onGrab && !onDownload && !onRename && !onHealthIssue && !onHealthRestored && !onApplicationUpdate && !onSeriesDelete && !onEpisodeFileDelete && !onManualInteractionRequired ?