Skip to content

Commit 356e9ac

Browse files
committed
Fixed card layout
1 parent a4fac30 commit 356e9ac

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@
204204
<AutomaticRefreshIndicatorButton {canRefresh} refresh={loadData} /></Card.Title
205205
></Card.Header
206206
>
207-
<Card.Content class="pt-4">
207+
<Card.Content>
208208
<EventsDataTable bind:limit={queryParams.limit!} isLoading={clientStatus.isLoading} rowClick={rowclick} {table}>
209209
{#snippet toolbarChildren()}
210210
<FacetedFilter.Root changed={onFilterChanged} {filters} remove={onFilterRemoved}>

src/Exceptionless.Web/ClientApp/src/routes/(app)/event/[eventId]/+page.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
><Card.Header>
4545
<Card.Title class="text-2xl">Event Details</Card.Title></Card.Header
4646
>
47-
<Card.Content class="pt-4">
47+
<Card.Content>
4848
<EventsOverview {filterChanged} id={page.params.eventId || ''} {handleError}></EventsOverview>
4949
</Card.Content>
5050
</Card.Root>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@
211211
<Card.Root
212212
><Card.Header>
213213
<Card.Title class="text-2xl">Issues <AutomaticRefreshIndicatorButton {canRefresh} refresh={loadData} /></Card.Title>
214-
</Card.Header><Card.Content class="pt-4">
214+
</Card.Header><Card.Content>
215215
<EventsDataTable bind:limit={queryParams.limit!} isLoading={clientStatus.isLoading} rowClick={rowclick} {table}>
216216
{#snippet toolbarChildren()}
217217
<FacetedFilter.Root changed={onFilterChanged} {filters} remove={onFilterRemoved}>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
</Button>
8686
</Card.Action>
8787
</Card.Header>
88-
<Card.Content class="pt-4">
88+
<Card.Content>
8989
<ProjectsDataTable bind:limit={projectsQueryParameters.limit!} isLoading={projectsQuery.isLoading} {rowClick} {table}>
9090
{#snippet toolbarChildren()}
9191
<div class="min-w-fit flex-1">

0 commit comments

Comments
 (0)