Skip to content

Commit fc85445

Browse files
committed
Add a space after "Recipe name:".
1 parent eade580 commit fc85445

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webserver/src/components/EditRecipe.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ export const EditRecipe: Component<{
619619
{recipe ? <input type="hidden" name="id" value={recipe.id} /> : null}
620620
{draft ? <input type="hidden" name="draftId" value={draft.draftId} /> : null}
621621
<div>
622-
<p><label>Recipe name:
622+
<p><label>{"Recipe name: "}
623623
<input style={{ "font-size": "1.5em", "font-style": "bold", "margin-bottom": ".5em" }}
624624
autocapitalize="words"
625625
type="text" name="name" value={recipe?.name || ""}

0 commit comments

Comments
 (0)