Skip to content

Commit a9e86da

Browse files
committed
Remove unneeded onMounted
1 parent 4a9046b commit a9e86da

File tree

1 file changed

+2
-3
lines changed
  • site/frontend/src/pages/detailed-query

1 file changed

+2
-3
lines changed

site/frontend/src/pages/detailed-query/page.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -246,9 +246,6 @@ function getSortAttributes(columnName: string) {
246246
return {};
247247
}
248248
249-
onMounted(async () => {
250-
await loadData();
251-
});
252249
function DeltaComponent({delta}: {delta: DeltaData | null}) {
253250
if (delta === null) {
254251
return <span>-</span>;
@@ -289,6 +286,8 @@ function DeltaComponent({delta}: {delta: DeltaData | null}) {
289286
</span>
290287
);
291288
}
289+
290+
loadData();
292291
</script>
293292

294293
<template>

0 commit comments

Comments
 (0)