From bd6fb9f1a23c3b573baaccead9c4886aed638fb0 Mon Sep 17 00:00:00 2001 From: Bob Igo Date: Mon, 5 Aug 2019 10:28:31 -0400 Subject: [PATCH] fix for using custom keys (#10045) Custom keys must be quoted, or else the parser will try to interpret them as numbers. --- source/_components/sma.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/_components/sma.markdown b/source/_components/sma.markdown index 8adc638dc77..4b440b9f8f4 100644 --- a/source/_components/sma.markdown +++ b/source/_components/sma.markdown @@ -133,7 +133,7 @@ Example: ```yaml custom: yesterday_consumption: - key: 6400_00543A01 + key: '6400_00543A01' unit: kWh factor: 1000 ```