diff --git a/src/components/sortable/Sortable.vue b/src/components/sortable/Sortable.vue index 4f3c69c1e..c8167bade 100644 --- a/src/components/sortable/Sortable.vue +++ b/src/components/sortable/Sortable.vue @@ -151,7 +151,7 @@ export default { */ getPropertyValue(obj, path) { const parts = path.split('.'); - return parts.reduce((acc, curr) => acc?[curr], obj); + return parts.reduce((acc, curr) => acc?.[curr], obj); }, /**