James Cole 2023-03-07 19:50:20 +01:00
parent 5ab8fbddcb
commit c676a65f93
No known key found for this signature in database
GPG Key ID: B49A324B7EAD6D80
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@
:value="cBill.id">{{ cBill.name }} :value="cBill.id">{{ cBill.name }}
</option> </option>
</select> </select>
<p v-if="this.bills.length === 1" class="help-block" v-text="$t('firefly.no_bill_pointer')"></p> <p v-if="this.bills.length === 1" class="help-block" v-html="$t('firefly.no_bill_pointer')"></p>
<ul v-for="error in this.error" class="list-unstyled"> <ul v-for="error in this.error" class="list-unstyled">
<li class="text-danger">{{ error }}</li> <li class="text-danger">{{ error }}</li>
</ul> </ul>

View File

@ -40,7 +40,7 @@
:value="cBudget.id">{{ cBudget.name }} :value="cBudget.id">{{ cBudget.name }}
</option> </option>
</select> </select>
<p v-if="this.budgets.length === 1" class="help-block" v-text="$t('firefly.no_budget_pointer')"></p> <p v-if="this.budgets.length === 1" class="help-block" v-html="$t('firefly.no_budget_pointer')"></p>
<ul v-for="error in this.error" class="list-unstyled"> <ul v-for="error in this.error" class="list-unstyled">
<li class="text-danger">{{ error }}</li> <li class="text-danger">{{ error }}</li>
</ul> </ul>