We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
onMounted
1 parent 4a9046b commit a9e86daCopy full SHA for a9e86da
site/frontend/src/pages/detailed-query/page.vue
@@ -246,9 +246,6 @@ function getSortAttributes(columnName: string) {
246
return {};
247
}
248
249
-onMounted(async () => {
250
- await loadData();
251
-});
252
function DeltaComponent({delta}: {delta: DeltaData | null}) {
253
if (delta === null) {
254
return <span>-</span>;
@@ -289,6 +286,8 @@ function DeltaComponent({delta}: {delta: DeltaData | null}) {
289
286
</span>
290
287
);
291
288
+
+loadData();
292
</script>
293
294
<template>
0 commit comments