We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3102f2a commit cadb4d4Copy full SHA for cadb4d4
1 file changed
components/modules/stats/tabs/RollupsTab.vue
@@ -23,10 +23,18 @@ const getRollups = async () => {
23
// })
24
25
fetchRollups({ limit: 100 })
26
- .then((res) => series.value.data = res)
27
- .finally(() => isLoading.value = false)
28
-
29
+ .then((res) => {
+ console.log('isLoading.value then', isLoading.value);
+ console.log('series.value.data then1', series.value.data);
+
30
+ series.value.data = res
31
+ console.log('series.value.data then2', series.value.data);
32
+} )
33
+ .finally(() => {
34
+ console.log('isLoading.value finally1', isLoading.value);
35
+ isLoading.value = false
36
+ console.log('isLoading.value finally2', isLoading.value);
37
+ })
38
39
// series.value.data = data
40
0 commit comments