Skip to content

Commit 93e6051

Browse files
committed
Clarify budget in jobs and services
1 parent ff5b836 commit 93e6051

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

components/Job.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
</div>
7272

7373
<div class="tabular" v-if="budget">
74-
<label>Budget:</label>
74+
<label title="The allowed maximum costs, specified by the user.">Budget limit:</label>
7575
<span class="value">{{ budget }}</span>
7676
</div>
7777
</section>
@@ -125,7 +125,7 @@ export default {
125125
},
126126
computed: {
127127
budget() {
128-
return Utils.formatBudget(this.job.budget, this.currency);
128+
return Utils.formatBudget(this.job.budget, this.currency, "No limit specified");
129129
},
130130
costs() {
131131
return Utils.formatCurrency(this.job.costs, this.currency);

components/Service.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
</div>
7676

7777
<div class="tabular" v-if="budget">
78-
<label>Budget:</label>
78+
<label title="The allowed maximum costs, specified by the user.">Budget limit:</label>
7979
<span class="value">{{ budget }}</span>
8080
</div>
8181
</section>
@@ -126,7 +126,7 @@ export default {
126126
},
127127
computed: {
128128
budget() {
129-
return Utils.formatBudget(this.service.budget, this.currency);
129+
return Utils.formatBudget(this.service.budget, this.currency, "No limit specified");
130130
},
131131
costs() {
132132
return Utils.formatCurrency(this.service.costs, this.currency);

0 commit comments

Comments
 (0)