File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 71
71
</div >
72
72
73
73
<div class =" tabular" v-if =" budget" >
74
- <label >Budget:</label >
74
+ <label title = " The allowed maximum costs, specified by the user. " >Budget limit :</label >
75
75
<span class =" value" >{{ budget }}</span >
76
76
</div >
77
77
</section >
@@ -125,7 +125,7 @@ export default {
125
125
},
126
126
computed: {
127
127
budget () {
128
- return Utils .formatBudget (this .job .budget , this .currency );
128
+ return Utils .formatBudget (this .job .budget , this .currency , " No limit specified " );
129
129
},
130
130
costs () {
131
131
return Utils .formatCurrency (this .job .costs , this .currency );
Original file line number Diff line number Diff line change 75
75
</div >
76
76
77
77
<div class =" tabular" v-if =" budget" >
78
- <label >Budget:</label >
78
+ <label title = " The allowed maximum costs, specified by the user. " >Budget limit :</label >
79
79
<span class =" value" >{{ budget }}</span >
80
80
</div >
81
81
</section >
@@ -126,7 +126,7 @@ export default {
126
126
},
127
127
computed: {
128
128
budget () {
129
- return Utils .formatBudget (this .service .budget , this .currency );
129
+ return Utils .formatBudget (this .service .budget , this .currency , " No limit specified " );
130
130
},
131
131
costs () {
132
132
return Utils .formatCurrency (this .service .costs , this .currency );
You can’t perform that action at this time.
0 commit comments