1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-21 13:23:07 +01:00

fix: improves styles for redirect alert

This commit is contained in:
Amir Raminfar
2023-09-25 09:44:48 -07:00
parent e8aa6adbda
commit 66738313c8
2 changed files with 5 additions and 2 deletions

View File

@@ -102,7 +102,7 @@ export class DockerEventLogEntry extends LogEntry<string> {
constructor(
message: string,
date: Date,
public readonly event: string,
public readonly event: "container-stopped" | "container-started",
) {
super(message, date.getTime(), date, "stderr", "info");
}