mirror of
https://github.com/ecency/ecency-mobile.git
synced 2025-01-03 11:34:30 +03:00
fixed 604
This commit is contained in:
parent
e31adac160
commit
71ce21b5f5
@ -124,7 +124,6 @@ export default class TagAreaView extends Component {
|
||||
}
|
||||
autoCapitalize="none"
|
||||
onFocus={() => this.setState({ activeChip: i })}
|
||||
{...this.props}
|
||||
/>
|
||||
),
|
||||
)}
|
||||
|
@ -44,12 +44,12 @@ export default class TitleAreaView extends Component {
|
||||
|
||||
render() {
|
||||
const { intl, isPreviewActive, autoFocus } = this.props;
|
||||
const { text } = this.state;
|
||||
const { text, height } = this.state;
|
||||
|
||||
return (
|
||||
<View style={globalStyles.containerHorizontal16}>
|
||||
<TextInput
|
||||
style={[styles.textInput, { height: Math.max(35, this.state.height) }]}
|
||||
style={[styles.textInput, { height: Math.max(35, height) }]}
|
||||
placeholderTextColor="#c1c5c7"
|
||||
editable={!isPreviewActive}
|
||||
maxLength={250}
|
||||
|
@ -219,7 +219,6 @@ export default class MarkdownEditorView extends Component {
|
||||
style={styles.textWrapper}
|
||||
underlineColorAndroid="transparent"
|
||||
value={text}
|
||||
{...this.props}
|
||||
/>
|
||||
) : (
|
||||
this._renderPreview()
|
||||
|
Loading…
Reference in New Issue
Block a user