views: fix lint issue

Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
Rohit Yadav 2019-10-12 00:13:58 +05:30
parent 5ca2b8c4aa
commit 7ada080084
1 changed files with 3 additions and 3 deletions

View File

@ -22,9 +22,9 @@
<a-skeleton active v-if="loading" />
<a-card-grid
style="width:50%; textAlign:'center'"
:key="index"
v-for="(key, index) in $route.meta.details"
v-if="!loading && key in resource">
v-for="key in $route.meta.details"
v-if="!loading && key in resource"
:key="key" >
<strong>{{ $t(key) }}</strong><br/>{{ resource[key] }}
</a-card-grid>
</a-card>