Minor formatting changes from prettier 2.0

This commit is contained in:
Adam Goldsmith 2020-03-22 00:40:43 -04:00
parent e983d4a157
commit ea715da82e
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<template>
<div>
<AssetLabel
v-for="asset in assets.rows.filter(t => t.name !== '')"
v-for="asset in assets.rows.filter((t) => t.name !== '')"
:asset="asset"
:key="asset.id"
>

View File

@ -3,5 +3,5 @@ import Vue from 'vue';
import App from './App';
let app = new Vue({
render: h => h(App),
render: (h) => h(App),
}).$mount('#app');