diff --git a/src/components/Table/InfoCardTable/Panel.vue b/src/components/Table/InfoCardTable/Panel.vue index f39213752..e165e679f 100644 --- a/src/components/Table/InfoCardTable/Panel.vue +++ b/src/components/Table/InfoCardTable/Panel.vue @@ -4,15 +4,11 @@
- {{ object.name }} +

{{ object.name }}

{{ object.provider.label }}
-
+
@@ -64,21 +60,19 @@ export default { }, getImage: { type: Function, - default: (obj) => '' + default: obj => '' }, getInfos: { type: Function, - default: (obj) => [] + default: obj => [] }, handleUpdate: { type: Function, - default: () => { - } + default: () => {} }, onView: { type: Function, - default: () => { - } + default: () => {} } }, data() { @@ -152,7 +146,6 @@ export default {