From 345ea6722ecc3c0c8891762271a563797e76c4c8 Mon Sep 17 00:00:00 2001 From: Alex Christoffer Rasmussen Date: Mon, 27 May 2024 12:22:01 +0200 Subject: [PATCH] add notes to secondaryOptions in timer view (#1004) --- .../src/common/components/view-params-editor/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/common/components/view-params-editor/constants.ts b/apps/client/src/common/components/view-params-editor/constants.ts index 2cb80c03f..730f5cdb6 100644 --- a/apps/client/src/common/components/view-params-editor/constants.ts +++ b/apps/client/src/common/components/view-params-editor/constants.ts @@ -103,7 +103,7 @@ export const getClockOptions = (timeFormat: string): ParamField[] => [ ]; export const getTimerOptions = (timeFormat: string, customFields: CustomFields): ParamField[] => { - const secondaryOptions = makeOptionsFromCustomFields(customFields); + const secondaryOptions = makeOptionsFromCustomFields(customFields, { note: 'Note' }); return [ getTimeOption(timeFormat), hideTimerSeconds,