Skip to content

Commit

Permalink
Merge pull request #73 from buggregator/hotfix/monolog-type
Browse files Browse the repository at this point in the history
Fixes event type for monolog
  • Loading branch information
butschster committed Nov 24, 2023
2 parents 37cf5bd + 82f883a commit 8e12048
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion assets/mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
}

@mixin layout-body {
@apply flex flex-col flex-1 pt-12 h-full;
@apply flex flex-col flex-1 pt-12;
}

@mixin text-muted {
Expand Down
1 change: 1 addition & 0 deletions pages/smtp/[id].vue
Original file line number Diff line number Diff line change
Expand Up @@ -110,5 +110,6 @@ export default defineComponent({
.smtp-event__body {
@include layout-body;
@apply h-full;
}
</style>
4 changes: 2 additions & 2 deletions src/entities/monolog/lib/use-monolog/normalize-monolog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ export const normalizeMonolog = (event: ServerEvent<Monolog>): NormalizedEvent<M

return {
id: event.uuid,
type: EVENT_TYPES.VAR_DUMP,
labels: [EVENT_TYPES.VAR_DUMP],
type: EVENT_TYPES.MONOLOG,
labels: [EVENT_TYPES.MONOLOG],
origin,
serverName: "",
date: event.timestamp ? new Date(event.timestamp * 1000) : null,
Expand Down

0 comments on commit 8e12048

Please sign in to comment.