diff --git a/src/components/UsersList.svelte b/src/components/UsersList.svelte index 1d00199..546b16f 100644 --- a/src/components/UsersList.svelte +++ b/src/components/UsersList.svelte @@ -1,22 +1,57 @@

Users

- + {#each users as user} +
{user.name}
+
+ {#if user.estimate !== null && showEstimates} +

{user.estimate}

+ {/if} +
+ {/each}
+ +