FIX: Don't fallback to original implementation for linkTitle in the custom type (#20298)

The `custom` notification type is a generic notification type that plugins can use for their own notifications, so it doesn't make sense to fallback to the implementation of `linkTitle` in the base notification type because core can't possibly come up with a title suitable for all custom notifications.
This commit is contained in:
Osama Sayegh 2023-02-16 01:19:16 +03:00 committed by GitHub
parent 79c94afdc5
commit 183946a549
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,6 @@ export default class extends NotificationTypeBase {
if (this.notification.data.title) {
return I18n.t(this.notification.data.title);
}
return super.linkTitle;
}
get icon() {