cors: minor formatting fixes
Project: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/commit/c5c6f1c2 Tree: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/tree/c5c6f1c2 Diff: http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/diff/c5c6f1c2 Branch: refs/heads/master Commit: c5c6f1c2114a896fa06c28a38d72ef9b5e9592dc Parents: 8588ef7 Author: Robert Kowalski <[email protected]> Authored: Tue Nov 17 15:14:13 2015 +0100 Committer: Robert Kowalski <[email protected]> Committed: Tue Nov 17 15:15:13 2015 +0100 ---------------------------------------------------------------------- app/addons/cors/components.react.jsx | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb-fauxton/blob/c5c6f1c2/app/addons/cors/components.react.jsx ---------------------------------------------------------------------- diff --git a/app/addons/cors/components.react.jsx b/app/addons/cors/components.react.jsx index 37579eb..13d20af 100644 --- a/app/addons/cors/components.react.jsx +++ b/app/addons/cors/components.react.jsx @@ -322,13 +322,17 @@ define([ return ( <div className="cors-page"> <header id="cors-header"> - <p> {this.getCorsNotice()}</p> + <p>{this.getCorsNotice()}</p> </header> <form id="corsForm" onSubmit={this.save}> <div className="cors-enable"> <label className="checkbox"> - <input type="checkbox" checked={this.state.corsEnabled} onChange={this.enableCorsChange} /> Enable CORS + <input + type="checkbox" + checked={this.state.corsEnabled} + onChange={this.enableCorsChange} /> + Enable CORS </label> </div> <div id={className}>
