From 4c69bc11dbe8a5d87b5fbfb0e43a2f2a06f04866 Mon Sep 17 00:00:00 2001 From: Henry8192 <50559854+Henry8192@users.noreply.github.com> Date: Fri, 25 Oct 2024 19:37:10 -0400 Subject: [PATCH] Add warning that decoder format string syntax will change in a future release. (#106) --- src/components/modals/SettingsModal/SettingsDialog.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/modals/SettingsModal/SettingsDialog.tsx b/src/components/modals/SettingsModal/SettingsDialog.tsx index b4ad8ac2..db59260d 100644 --- a/src/components/modals/SettingsModal/SettingsDialog.tsx +++ b/src/components/modals/SettingsModal/SettingsDialog.tsx @@ -33,7 +33,8 @@ import ThemeSwitchToggle from "./ThemeSwitchToggle"; const CONFIG_FORM_FIELDS = [ { - helperText: "[JSON] Log messages conversion formats.", + helperText: "[JSON] Log messages conversion pattern. The current syntax is similar to" + + " Logback conversion patterns but will change in a future release.", initialValue: getConfig(CONFIG_KEY.DECODER_OPTIONS).formatString, label: "Decoder: Format string", name: LOCAL_STORAGE_KEY.DECODER_OPTIONS_FORMAT_STRING,