mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Clean up some code
This commit is contained in:
@@ -30,7 +30,7 @@
|
||||
<input v-model=active :name="name" @change="handleInput" type="checkbox" value="1">
|
||||
</label>
|
||||
</div>
|
||||
<p class="help-block" v-html="$t('firefly.webhook_active_form_help')"></p>
|
||||
<p class="help-block" v-text="$t('firefly.webhook_active_form_help')"></p>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
@@ -37,7 +37,7 @@
|
||||
:value="delivery.id">{{ delivery.name }}
|
||||
</option>
|
||||
</select>
|
||||
<p class="help-block" v-html="$t('firefly.webhook_delivery_form_help')"></p>
|
||||
<p class="help-block" v-text="$t('firefly.webhook_delivery_form_help')"></p>
|
||||
<ul v-for="error in this.error" class="list-unstyled">
|
||||
<li class="text-danger">{{ error }}</li>
|
||||
</ul>
|
||||
|
@@ -37,7 +37,7 @@
|
||||
:value="response.id">{{ response.name }}
|
||||
</option>
|
||||
</select>
|
||||
<p class="help-block" v-html="$t('firefly.webhook_response_form_help')"></p>
|
||||
<p class="help-block" v-text="$t('firefly.webhook_response_form_help')"></p>
|
||||
<ul v-for="error in this.error" class="list-unstyled">
|
||||
<li class="text-danger">{{ error }}</li>
|
||||
</ul>
|
||||
|
@@ -37,7 +37,7 @@
|
||||
:value="trigger.id">{{ trigger.name }}
|
||||
</option>
|
||||
</select>
|
||||
<p class="help-block" v-html="$t('firefly.webhook_trigger_form_help')"></p>
|
||||
<p class="help-block" v-text="$t('firefly.webhook_trigger_form_help')"></p>
|
||||
<ul v-for="error in this.error" class="list-unstyled">
|
||||
<li class="text-danger">{{ error }}</li>
|
||||
</ul>
|
||||
|
@@ -40,7 +40,7 @@
|
||||
:value="cBill.id">{{ cBill.name }}
|
||||
</option>
|
||||
</select>
|
||||
<p v-if="this.bills.length === 1" class="help-block" v-html="$t('firefly.no_bill_pointer')"></p>
|
||||
<p v-if="this.bills.length === 1" class="help-block" v-text="$t('firefly.no_bill_pointer')"></p>
|
||||
<ul v-for="error in this.error" class="list-unstyled">
|
||||
<li class="text-danger">{{ error }}</li>
|
||||
</ul>
|
||||
|
@@ -40,7 +40,7 @@
|
||||
:value="cBudget.id">{{ cBudget.name }}
|
||||
</option>
|
||||
</select>
|
||||
<p v-if="this.budgets.length === 1" class="help-block" v-html="$t('firefly.no_budget_pointer')"></p>
|
||||
<p v-if="this.budgets.length === 1" class="help-block" v-text="$t('firefly.no_budget_pointer')"></p>
|
||||
<ul v-for="error in this.error" class="list-unstyled">
|
||||
<li class="text-danger">{{ error }}</li>
|
||||
</ul>
|
||||
|
@@ -20,7 +20,7 @@
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<p class="help-block" v-html="$t('firefly.hidden_fields_preferences')"></p>
|
||||
<p class="help-block" v-text="$t('firefly.hidden_fields_preferences')"></p>
|
||||
<component
|
||||
v-bind:is="dateComponent"
|
||||
v-if="this.fields.interest_date" v-model="value.interest_date" :error="error.interest_date"
|
||||
|
@@ -85,7 +85,7 @@
|
||||
<table class="table table-hover" aria-label="A table">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th style="width:40%;">{{ $t('list.url') }}</th>
|
||||
<th scope="row" style="width:40%;">{{ $t('list.url') }}</th>
|
||||
<td><input type="text" readonly class="form-control" :value=url></td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
Reference in New Issue
Block a user