Skip to content

Commit

Permalink
Name fact placeholder fix. Closes #292.
Browse files Browse the repository at this point in the history
  • Loading branch information
impworks committed May 14, 2024
1 parent fa452d8 commit 934f1b3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
</div>
<div class="form-group col-sm-4">
<label>@Texts.Admin_Pages_Facts_FirstName</label>
<input type="text" v-model="row.FirstName" class="form-control form-control-sm mr-2" placeholder="@Texts.Admin_Pages_Facts_FirstName" />
<input type="text" v-model="row.FirstName" class="form-control form-control-sm mr-2" placeholder="@Html.Raw(Texts.Admin_Pages_Facts_FirstName)" />
</div>
<div class="form-group col-sm-4">
<button type="button" class="btn btn-sm btn-outline-danger btn-remove-fact" v-on:click="remove(row)" title="@Texts.Admin_Pages_Facts_Add">
<i class="fa fa-remove"></i>
</button>
<label>@Texts.Admin_Pages_Facts_MiddleName</label>
<input type="text" v-model="row.MiddleName" class="form-control form-control-sm mr-2" placeholder="@Texts.Admin_Pages_Facts_MiddleName" />
<input type="text" v-model="row.MiddleName" class="form-control form-control-sm mr-2" placeholder="@Html.Raw(Texts.Admin_Pages_Facts_MiddleName)" />
</div>
</div>
<duration-picker v-model="row.Duration" size="sm" />
Expand Down

0 comments on commit 934f1b3

Please sign in to comment.