Fix invalid JSON data in template node (#2322)

This commit is contained in:
Kazuhito Yokoi
2019-10-10 18:34:10 +09:00
committed by Dave Conway-Jones
parent a1e10e99fa
commit ff4d58f648
4 changed files with 11 additions and 9 deletions

View File

@@ -34,9 +34,9 @@
<pre>こんにちは{{payload.name}}さん今日は{{date}}です</pre>
<p>というテンプレートに対して
<pre>{
date: "月曜日"
date: "月曜日",
payload: {
name: "山田",
name: "山田"
}
}</pre>
<p>というメッセージを受信した場合</p>