Skip to content
This repository has been archived by the owner on Mar 17, 2024. It is now read-only.

Commit

Permalink
Bug/SK-381 | It is possible to create an empty tag (#91)
Browse files Browse the repository at this point in the history
  • Loading branch information
niklastheman committed Mar 14, 2023
1 parent a7e60cf commit c7c3322
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/models_details_private.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ <h5 class="card-title mb-0">{{ model.name }}</h5>
<div class="row">
<div class="col-12 col-md-6">

{% include './common/autocomplete.html' with str_list=all_tags id_suffix="tags" name="tag" %}
{% include './common/autocomplete.html' with str_list=all_tags id_suffix="tags" name="tag" required=True %}
</div>
<div class="col-12 col-md-6 pt-3 pt-md-0">

Expand Down
2 changes: 1 addition & 1 deletion templates/models_details_public.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ <h5 class="card-title mb-0">{{ model.name }}</h5>
<div class="row">
<div class="col-12 col-md-6">

{% include './common/autocomplete.html' with str_list=all_tags id_suffix="tags" name="tag" %}
{% include './common/autocomplete.html' with str_list=all_tags id_suffix="tags" name="tag" required=True %}
</div>
<div class="col-12 col-md-6 pt-3 pt-md-0">

Expand Down

0 comments on commit c7c3322

Please sign in to comment.