From 888fec3f9d0f61516deb1bbd25573c8460cf380f Mon Sep 17 00:00:00 2001 From: Loren Norman Date: Wed, 20 Aug 2025 13:55:43 -0400 Subject: [PATCH] fix template tooltip --- app/blocks/text/template.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/blocks/text/template.js b/app/blocks/text/template.js index ad79973..c51a758 100644 --- a/app/blocks/text/template.js +++ b/app/blocks/text/template.js @@ -6,9 +6,9 @@ export default { colour: 180, inputsInline: true, description: ` - ::: v-pre - Create dynamic, personalized messages by combining static text with live data from your IoT system. Perfect for intelligent notifications like "Hello {{ user.name }}, your temperature sensor read {{ feeds['sensors.temperature'].value }}°F" or automated reports that include current sensor values, user information, and real-time data. Uses the powerful Liquid templating language for advanced formatting and logic. + Create dynamic, personalized messages by combining static text with live data from your IoT system. Perfect for intelligent notifications like "Hello {{ user.name }}, your temperature sensor read {{ feeds['sensors.temperature'].value }}°F" or automated reports that include current sensor values, user information, and real-time data. Uses the powerful Liquid templating language for advanced formatting and logic. + ::: v-pre ## What is a Text Template? Think of a text template like a form letter where you leave blanks to fill in with specific information. Instead of writing "Dear _____", you write "Dear {{ user.name }}" and the system automatically fills in the actual name when the message is sent.