Updating composer to fix line breaks and other rich text issues

• Updating:
- composer to fix line breaks and other rich text issues
This commit is contained in:
mgabdev
2020-06-19 21:02:13 -04:00
parent a9a566e211
commit fc80955306
6 changed files with 54 additions and 36 deletions

View File

@@ -36,6 +36,8 @@ export default class AutosuggestTextbox extends ImmutablePureComponent {
onBlur: PropTypes.func,
textarea: PropTypes.bool,
small: PropTypes.bool,
isPro: PropTypes.bool,
isEdit: PropTypes.bool,
}
static defaultProps = {
@@ -211,6 +213,8 @@ export default class AutosuggestTextbox extends ImmutablePureComponent {
children,
valueMarkdown,
id,
isPro,
isEdit,
} = this.props
const { suggestionsHidden } = this.state
@@ -284,6 +288,8 @@ export default class AutosuggestTextbox extends ImmutablePureComponent {
onBlur={this.onBlur}
onPaste={this.onPaste}
small={small}
isEdit={isEdit}
isPro={isPro}
/>
</Responsive>