Skip to content

Commit

Permalink
feat(web): Adding placeholder and full width for input in update
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Boutour <[email protected]>
  • Loading branch information
ViBiOh committed Oct 13, 2021
1 parent 9591ab3 commit b8711fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cmd/ketchup/templates/ketchup.html
Original file line number Diff line number Diff line change
Expand Up @@ -151,12 +151,12 @@ <h2 class="header">Edit ketchup</h2>
'^1': latest with fixed major version.
'~1.1': latest with fixed major and minor version.
'^1-0': include beta (works also for '~')." src="{{ url "/svg/question?fill=silver" }}" alt="Question icon"></label>
<input id="edit-pattern-{{ .ID }}" name="pattern" type="text" value="{{ .Pattern }}">
<input id="edit-pattern-{{ .ID }}" name="pattern" type="text" placeholder="stable" class="full" value="{{ .Pattern }}">
</p>

<p class="padding no-margin">
<label for="edit-version-{{ .ID }}" class="block">My version:</label>
<input id="edit-version-{{ .ID }}" name="version" type="text" value="{{ .Version }}">
<input id="edit-version-{{ .ID }}" name="version" type="text" placeholder="1.0.0" class="full" value="{{ .Version }}">
</p>

<p class="padding no-margin">
Expand Down

0 comments on commit b8711fe

Please sign in to comment.