Showing
1 changed file
with
2 additions
and
2 deletions
... | ... | @@ -81,8 +81,8 @@ |
81 | 81 | const handleExportAll = async () => { |
82 | 82 | loading.value = true; |
83 | 83 | try { |
84 | - const [events, properties, service] = await getAllModel(); | |
85 | - const value = { properties, service, events }; | |
84 | + const [events, properties, services] = await getAllModel(); | |
85 | + const value = { properties, services, events }; | |
86 | 86 | exportJSONFile(value); |
87 | 87 | } catch (error) { |
88 | 88 | throw error; | ... | ... |