Skip to content

Commit

Permalink
Recover border colors (#17269)
Browse files Browse the repository at this point in the history
  • Loading branch information
etoledom committed Aug 30, 2019
1 parent f9fa455 commit 7b12673
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
Expand Up @@ -131,7 +131,7 @@ class BlockListBlock extends Component {
>
{ isValid && this.getBlockForType() }
{ ! isValid &&
<BlockInvalidWarning blockTitle={ title } icon={ icon } />
<BlockInvalidWarning blockTitle={ title } icon={ icon } />
}
</View>
{ isSelected && <BlockMobileToolbar clientId={ clientId } /> }
Expand Down
Expand Up @@ -140,7 +140,7 @@ export class BlockList extends Component {
rootClientId={ this.props.rootClientId }
onCaretVerticalPositionChange={ this.onCaretVerticalPositionChange }
borderStyle={ this.blockHolderBorderStyle() }
focusedBorderColor={ blockHolderFocusedStyle }
focusedBorderColor={ blockHolderFocusedStyle.borderColor }
/> ) }
</ReadableContentView>
);
Expand Down
3 changes: 1 addition & 2 deletions packages/edit-post/src/components/layout/index.native.js
Expand Up @@ -118,8 +118,7 @@ class Layout extends Component {
<View style={ useStyle( styles.background, styles.backgroundDark, this.props.theme ) }>
{ isHtmlView ? this.renderHTML() : this.renderVisual() }
</View>
<View style={ { flex: 0, flexBasis: marginBottom, height: marginBottom } }>
</View>
<View style={ { flex: 0, flexBasis: marginBottom, height: marginBottom } } />
{ ! isHtmlView && (
<KeyboardAvoidingView
parentHeight={ this.state.rootViewHeight }
Expand Down

0 comments on commit 7b12673

Please sign in to comment.