Skip to content

Commit

Permalink
Debug documents count
Browse files Browse the repository at this point in the history
  • Loading branch information
allanlasser committed Mar 19, 2024
1 parent 0c7dce4 commit 8000791
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/pages/app/ActionBar.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<script lang="ts">
import { _ } from "svelte-i18n";
import Badge from "../../common/Badge.svelte";
import Checkbox from "../../common/Checkbox.svelte";
import Flex from "../../common/Flex.svelte";
import Tooltip from "../../common/Tooltip.svelte";
Expand Down Expand Up @@ -43,10 +42,15 @@
function handleSelectAll({ detail }) {
if (!detail.indeterminate) selection.onCheck();
}
$: loading = data.loading;
$: {
console.log(data);
}
</script>

<div class="barcontainer">
{#if !data.loading}
{#if !loading}
<Flex gap={2} align="center" justify="space-between">
<Flex gap={2} align="center">
{#if loggedIn}
Expand Down

0 comments on commit 8000791

Please sign in to comment.