This commit is contained in:
@@ -59,7 +59,7 @@
|
||||
></v-checkbox>
|
||||
</td>
|
||||
<td class="text-xs-left" @click="editItem(props.item)">
|
||||
{{ props.item.name | capitalize }}
|
||||
{{ props.item.name }}
|
||||
</td>
|
||||
<td class="text-xs-left" @click="editItem(props.item)">
|
||||
{{ props.item.serial }}
|
||||
|
||||
@@ -156,7 +156,7 @@ Vue.filter("shortdatelocalized", function vueFilterShortDateLocalized(value) {
|
||||
|
||||
Vue.filter("currency", function vueFilterCurrency(value) {
|
||||
if (!value) return "";
|
||||
return "$" + value;
|
||||
return locale.format().currencySymbol + value;
|
||||
});
|
||||
|
||||
Vue.filter("boolastext", function vueFilterBoolAsText(value) {
|
||||
|
||||
Reference in New Issue
Block a user