Skip to content

Commit

Permalink
Merge pull request #205 from flexion/bug/fix_location_input_form_img_…
Browse files Browse the repository at this point in the history
…on_approve

Fix string-interpolation for img src in location input form.
  • Loading branch information
bdruth authored Jan 7, 2022
2 parents c29f4cb + b51b933 commit 3e921a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/views/LocationInputForm.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ export const LocationInputForm = connect(
</Control>
{form.imageURL && !form.base64Image && (
<Control>
<img src="/{form.imageURL}" />
<img src={`/${form.imageURL}`} />
</Control>
)}
</Field>
Expand Down

0 comments on commit 3e921a1

Please sign in to comment.