shop: remove animation from backlog #83

Merged
sb10q merged 7 commits from esavkin/web2019:79-animation-fix into master 2023-08-10 12:29:42 +08:00
2 changed files with 5 additions and 5 deletions
Showing only changes of commit 1dd336385f - Show all commits

File diff suppressed because one or more lines are too long

View File

@ -350,8 +350,8 @@ class Layout extends React.PureComponent {
{RFQBodyType === 'import' ? ( {RFQBodyType === 'import' ? (
<div className="w-100"> <div className="w-100">
<form className="form w-100"> <form className="w-100">
<div className="form-group"> <div className="mb-3">
<p className="small"> <p className="small">
Input the JSON description below. Should be something like: Input the JSON description below. Should be something like:
<br /> <br />
@ -359,7 +359,7 @@ class Layout extends React.PureComponent {
</p> </p>
</div> </div>
<div className="form-group w-100"> <div className="mb-3 w-100">
<textarea <textarea
onChange={this.handleCustomConfig} onChange={this.handleCustomConfig}
value={this.state.customconf} value={this.state.customconf}
@ -368,7 +368,7 @@ class Layout extends React.PureComponent {
placeholder="Input JSON description here." /> placeholder="Input JSON description here." />
</div> </div>
{this.state.error ? ( {this.state.error ? (
<div className="form-group"> <div className="mb-3">
<p className="text-danger">{this.state.error}</p> <p className="text-danger">{this.state.error}</p>
</div> </div>
) : null} ) : null}