IF YOU WOULD LIKE TO GET AN ACCOUNT, please write an email to s dot adaszewski at gmail dot com. User accounts are meant only to report issues and/or generate pull requests. This is a purpose-specific Git hosting for ADARED projects. Thank you for your understanding!
Browse Source

Error box spacing in WBJsonEditor.

pull/1/head
parent
commit
95f0d9ba81
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      frontend/src/js/component/wb-json-editor.js

+ 1
- 1
frontend/src/js/component/wb-json-editor.js View File

@@ -25,7 +25,7 @@ class WBJsonEditor extends Component {
<textarea class="form-control wb-json-editor" value={ editValue } rows="10"
onChange={ e => this.setState({ editValue: e.target.value }) } />
{ parseError ? (
<div class="alert alert-danger" role="alert">
<div class="alert alert-danger mt-2" role="alert">
{ parseError }
</div>
) : null }


Loading…
Cancel
Save