diff --git a/frontend/src/Settings/Notifications/Notifications/Notification.js b/frontend/src/Settings/Notifications/Notifications/Notification.js index 76be45247..2982de6cd 100644 --- a/frontend/src/Settings/Notifications/Notifications/Notification.js +++ b/frontend/src/Settings/Notifications/Notifications/Notification.js @@ -63,6 +63,7 @@ class Notification extends Component { onDownloadFailure, onImportFailure, onTrackRetag, + onApplicationUpdate, supportsOnGrab, supportsOnReleaseImport, supportsOnUpgrade, @@ -70,7 +71,8 @@ class Notification extends Component { supportsOnHealthIssue, supportsOnDownloadFailure, supportsOnImportFailure, - supportsOnTrackRetag + supportsOnTrackRetag, + supportsOnApplicationUpdate } = this.props; return ( @@ -86,62 +88,69 @@ class Notification extends Component { { supportsOnGrab && onGrab && } { supportsOnReleaseImport && onReleaseImport && } { supportsOnUpgrade && onReleaseImport && onUpgrade && } { supportsOnRename && onRename && } { supportsOnTrackRetag && onTrackRetag && } { supportsOnHealthIssue && onHealthIssue && } { supportsOnDownloadFailure && onDownloadFailure && } { supportsOnImportFailure && onImportFailure && + } + + { + supportsOnApplicationUpdate && onApplicationUpdate && + } { !onGrab && !onReleaseImport && !onRename && !onTrackRetag && - !onHealthIssue && !onDownloadFailure && !onImportFailure && + !onHealthIssue && !onDownloadFailure && !onImportFailure && !onApplicationUpdate &&