Chroma logs in Frontend (#12131)

* Chroma logs in frontend

* fix lint
This commit is contained in:
Jason Hunter
2024-06-24 08:19:50 -04:00
committed by Nicolas Mowen
parent d93d6262ce
commit dd7fd16b69
2 changed files with 47 additions and 6 deletions

View File

@@ -12,5 +12,5 @@ export type LogLine = {
content: string;
};
export const logTypes = ["frigate", "go2rtc", "nginx"] as const;
export const logTypes = ["frigate", "go2rtc", "nginx", "chroma"] as const;
export type LogType = (typeof logTypes)[number];