Skip to content

Commit

Permalink
Add a space after "Recipe name:".
Browse files Browse the repository at this point in the history
  • Loading branch information
jyasskin committed Dec 24, 2023
1 parent eade580 commit fc85445
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webserver/src/components/EditRecipe.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@ export const EditRecipe: Component<{
{recipe ? <input type="hidden" name="id" value={recipe.id} /> : null}
{draft ? <input type="hidden" name="draftId" value={draft.draftId} /> : null}
<div>
<p><label>Recipe name:
<p><label>{"Recipe name: "}
<input style={{ "font-size": "1.5em", "font-style": "bold", "margin-bottom": ".5em" }}
autocapitalize="words"
type="text" name="name" value={recipe?.name || ""}
Expand Down

0 comments on commit fc85445

Please sign in to comment.