Skip to content

Commit

Permalink
chore: fixes typescheck
Browse files Browse the repository at this point in the history
  • Loading branch information
amir20 committed Sep 26, 2024
1 parent f600d26 commit 3497bf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/components/LogViewer/LogAnalytics.vue
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,6 @@ whenever(evaluating, () => {
const columns = computed(() =>
results.value.numRows > 0 ? Object.keys(results.value.get(0) as Record<string, any>) : [],
);
const page = computed(() => (results.value.numRows > 0 ? results.value.slice(0, pageLimit) : []));
const page = computed(() => (results.value.numRows > pageLimit ? results.value.slice(0, pageLimit) : results.value));
</script>
<style lang="postcss" scoped></style>

0 comments on commit 3497bf3

Please sign in to comment.