From 12b74b0f2d61df649815ab6ed796b6caa9c48397 Mon Sep 17 00:00:00 2001 From: Stefan Dej Date: Fri, 8 Mar 2024 22:26:58 +0100 Subject: [PATCH] fix: add runtime_warning to the PrinterStateKlipperConfigWarning.type attribute Signed-off-by: Stefan Dej --- src/store/printer/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/store/printer/types.ts b/src/store/printer/types.ts index e0ebe8275..6b08e5410 100644 --- a/src/store/printer/types.ts +++ b/src/store/printer/types.ts @@ -234,7 +234,7 @@ export interface PrinterStateKlipperConfigWarning { message: string option: string section: string - type: 'deprecated_value' | 'deprecated_option' + type: 'deprecated_value' | 'deprecated_option' | 'runtime_warning' value: string }