From b75235c26c85cbcc9f1f2df26008b8473e77d981 Mon Sep 17 00:00:00 2001 From: Konstantinos Gkinis Date: Tue, 18 Sep 2018 11:25:43 +0300 Subject: [PATCH] Fixes error in Material Icon Button snippet The current snippet does not work properly: 1) The snippet's placeholder syntax is wrong: `%{text}` while it should be `${text}` 2) The material icon button usage is wrong, as it expects a `` element inside the button. --- src/snippets.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/snippets.json b/src/snippets.json index 799551d..9c08746 100644 --- a/src/snippets.json +++ b/src/snippets.json @@ -1810,7 +1810,7 @@ "description": "Circular Material button with a transparent background", "types": "typescript, html", "body": [ - "$0" + "$0" ] }, "Material Round Button": {