Skip to content

Commit 9be9345

Browse files
committed
Update 0BDFDB.plugin.js
1 parent 4613022 commit 9be9345

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

Library/0BDFDB.plugin.js

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6208,7 +6208,6 @@ module.exports = (_ => {
62086208
}
62096209
};
62106210

6211-
CustomComponents.FormComponents = {};
62126211
CustomComponents.FormItem = reactInitialized && class BDFDB_FormItem extends Internal.LibraryModules.React.Component {
62136212
render() {
62146213
return BDFDB.ReactUtils.createElement("div", {
@@ -6415,8 +6414,8 @@ module.exports = (_ => {
64156414
style: {flex: "1 1 auto"},
64166415
children: this.props.label
64176416
}),
6418-
typeof this.props.note == "string" ? BDFDB.ReactUtils.createElement(Internal.LibraryComponents.FormComponents.FormText, {
6419-
type: Internal.LibraryComponents.FormComponents.FormText.Types.DESCRIPTION,
6417+
typeof this.props.note == "string" ? BDFDB.ReactUtils.createElement(Internal.LibraryComponents.FormText.Text, {
6418+
type: Internal.LibraryComponents.FormText.Types.DESCRIPTION,
64206419
children: this.props.note
64216420
}) : null
64226421
].filter(n => n)
@@ -7156,9 +7155,9 @@ module.exports = (_ => {
71567155
}),
71577156
typeof this.props.note == "string" ? BDFDB.ReactUtils.createElement(Internal.LibraryComponents.Flex.Child, {
71587157
className: BDFDB.disCN.settingsrownote,
7159-
children: BDFDB.ReactUtils.createElement(Internal.LibraryComponents.FormComponents.FormText, {
7158+
children: BDFDB.ReactUtils.createElement(Internal.LibraryComponents.FormText.Text, {
71607159
disabled: this.props.disabled,
7161-
type: Internal.LibraryComponents.FormComponents.FormText.Types.DESCRIPTION,
7160+
type: Internal.LibraryComponents.FormText.Types.DESCRIPTION,
71627161
children: BDFDB.ReactUtils.createElement(Internal.LibraryComponents.TextScroller, {speed: 2, children: this.props.note})
71637162
})
71647163
}) : null,

0 commit comments

Comments
 (0)