mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-08 15:48:27 -05:00
fixed showing import numbers on open data component
This commit is contained in:
@@ -30,7 +30,7 @@
|
|||||||
<td>{{ $t(d.name.charAt(0).toUpperCase() + d.name.slice(1)) }}</td>
|
<td>{{ $t(d.name.charAt(0).toUpperCase() + d.name.slice(1)) }}</td>
|
||||||
<td>{{ metadata[selected_version][d.name] }}</td>
|
<td>{{ metadata[selected_version][d.name] }}</td>
|
||||||
<td>
|
<td>
|
||||||
<template v-if="import_count !== undefined">{{ import_count[d] }}</template>
|
<template v-if="d.name in import_count">{{ import_count[d.name] }} </template>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
@@ -67,7 +67,7 @@ export default {
|
|||||||
selected_version: undefined,
|
selected_version: undefined,
|
||||||
update_existing: true,
|
update_existing: true,
|
||||||
use_metric: true,
|
use_metric: true,
|
||||||
import_count: undefined,
|
import_count: {},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
|
|||||||
Reference in New Issue
Block a user