From addd4949ea63a9f485e6b5f738d959ac7eec45ba Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Tue, 18 Aug 2026 18:54:28 -0400 Subject: [PATCH] Add missing quotes --- src/pkjs/config.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/pkjs/config.js b/src/pkjs/config.js index 9dcac3d..99a3933 100644 --- a/src/pkjs/config.js +++ b/src/pkjs/config.js @@ -38,28 +38,28 @@ module.exports = [ { "type": "slider", "messageKey": "CLAY_DATE_TIMEOUT_SECS", - defaultValue: 3, - min: 0, - max: 15, + "defaultValue": 3, + "min": 0, + "max": 15, "label": "Date timeout (seconds)", "description": "When you flick your wrist, the date will be shown for this number of seconds.

Set to 0 to disable this feature." }, { "type": "slider", "messageKey": "CLAY_TEMP_BAR_0", - defaultValue: -32, - min: -50, - max: 0, + "defaultValue": -32, + "min": -50, + "max": 0, "label": "Minimum of temperature range", "description": "Default: -32°C

Measured in Celsius, this value sets the temperature that is considered the minimum on the watchface. When it is this temperature, 0 temperature bars will be displayed. The maximum is this value +80, making the default maximum 48°C." }, { "type": "slider", "messageKey": "CLAY_LOW_FUEL_PERCENT", - defaultValue: 20, - min: 0, - max: 100, - step: 10, + "defaultValue": 20, + "min": 0, + "max": 100, + "step": 10, "label": "Low fuel indicator percentage", "description": "The low fuel indicator will appear at this battery percentage. Set to 0 to disable." }