This commit is contained in:
Mirco Wittrien 2020-02-10 13:14:20 +01:00
parent af122675d3
commit cfe5ac6f32
4 changed files with 5 additions and 5 deletions

View File

@ -3816,12 +3816,12 @@
children: [
BDFDB.ReactUtils.createElement(InternalComponents.LibraryComponents.FormComponents.FormTitle, {
tag: InternalComponents.LibraryComponents.FormComponents.FormTitle.Tags.H4,
children: typeof config.header == "string" ? config.header : ""
children: config.header
}),
BDFDB.ReactUtils.createElement(InternalComponents.LibraryComponents.TextElement, {
size: InternalComponents.LibraryComponents.TextElement.Sizes.SMALL,
color: InternalComponents.LibraryComponents.TextElement.Colors.PRIMARY,
children: typeof config.subheader == "string" ? config.subheader : (name || "")
children: typeof config.subheader == "string" || BDFDB.ReactUtils.isValidElement(config.subheader) ? config.subheader : (name || "")
})
]
}),

File diff suppressed because one or more lines are too long

View File

@ -10,7 +10,7 @@ var FriendNotifications = (_ => {
getAuthor () {return "DevilBro";}
getDescription () {return "Notifies you when a Friend or a User your choose to observe changing his online status, can be configured individually in the settings.";}
getDescription () {return "Notifies you when a Friend or a User your choose to observe changes their online status, can be configured individually in the settings.";}
constructor () {
this.changelog = {

View File

@ -9,4 +9,4 @@
[patreon-badge]: https://img.shields.io/badge/Patreon-Support!-%23F96854.svg?logo=patreon&style=flat
[patreon-link]: https://patreon.com/MircoWittrien
Notifies you when a Friend or a User your choose to observe changing his online status, can be configured individually in the settings.
Notifies you when a Friend or a User your choose to observe changes their online status, can be configured individually in the settings.