Skip to content

Commit 8e12048

Browse files
authored
Merge pull request #73 from buggregator/hotfix/monolog-type
Fixes event type for monolog
2 parents 37cf5bd + 82f883a commit 8e12048

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

assets/mixins.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717

1818
@mixin layout-body {
19-
@apply flex flex-col flex-1 pt-12 h-full;
19+
@apply flex flex-col flex-1 pt-12;
2020
}
2121

2222
@mixin text-muted {

pages/smtp/[id].vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,5 +110,6 @@ export default defineComponent({
110110
111111
.smtp-event__body {
112112
@include layout-body;
113+
@apply h-full;
113114
}
114115
</style>

src/entities/monolog/lib/use-monolog/normalize-monolog.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ export const normalizeMonolog = (event: ServerEvent<Monolog>): NormalizedEvent<M
66

77
return {
88
id: event.uuid,
9-
type: EVENT_TYPES.VAR_DUMP,
10-
labels: [EVENT_TYPES.VAR_DUMP],
9+
type: EVENT_TYPES.MONOLOG,
10+
labels: [EVENT_TYPES.MONOLOG],
1111
origin,
1212
serverName: "",
1313
date: event.timestamp ? new Date(event.timestamp * 1000) : null,

0 commit comments

Comments
 (0)