Skip to content

Commit b2b88a7

Browse files
committed
Fixed event stream paging location
1 parent 0a5d98a commit b2b88a7

File tree

1 file changed

+7
-5
lines changed
  • src/Exceptionless.Web/ClientApp/src/routes/(app)/stream

1 file changed

+7
-5
lines changed

src/Exceptionless.Web/ClientApp/src/routes/(app)/stream/+page.svelte

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -144,12 +144,14 @@
144144
<DataTable.Empty {table} />
145145
{/if}
146146
</DataTable.Body>
147-
<Muted class="flex flex-1 items-center justify-between">
148-
<DataTable.PageSize bind:value={limit.value} {table}></DataTable.PageSize>
149-
<div class="py-2 text-center">
150-
<ErrorMessage message={response?.problem?.errors.general}></ErrorMessage>
147+
<DataTable.Footer {table}>
148+
<div class="flex items-center justify-center space-x-4 w-full">
149+
<DataTable.PageSize bind:value={limit.value} {table} />
150+
<div class="text-center">
151+
<ErrorMessage message={response?.problem?.errors.general} />
152+
</div>
151153
</div>
152-
</Muted>
154+
</DataTable.Footer>
153155
</DataTable.Root>
154156
</Card.Content></Card.Root
155157
>

0 commit comments

Comments
 (0)