Skip to content

Commit

Permalink
Workaround for redux-form incompatibility
Browse files Browse the repository at this point in the history
Signed-off-by: Máté Szabó <mszabo@fandom.com>
  • Loading branch information
mszabo-wikia committed Mar 12, 2023
1 parent d4d68b9 commit 4251a12
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ export class SearchFormImpl extends React.PureComponent {
const tz = selectedLookback === 'custom' ? new Date().toTimeString().replace(/^.*?GMT/, 'UTC') : null;

return (
<Form layout="vertical" onFinish={handleSubmit}>
<Form layout="vertical">
<FormItem
name="service"
label={
Expand Down Expand Up @@ -482,6 +482,7 @@ export class SearchFormImpl extends React.PureComponent {
className="SearchForm--submit"
disabled={disabled || noSelectedService || invalid}
data-test={markers.SUBMIT_BTN}
onClick={handleSubmit}
>
Find Traces
</Button>
Expand Down

0 comments on commit 4251a12

Please sign in to comment.