Skip to content

Commit 361dc1c

Browse files
Fixed Liquid conditional operators Example
In the first example after assign empty_string is not initialize so i initialized it
1 parent 3c6c559 commit 361dc1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

powerapps-docs/maker/portals/liquid/liquid-conditional-operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ When used in conditional statements (**if**,**unless**), some Liquid values will
1818
In Liquid, null and the Boolean value false are treated as false;everything else is treated as true. Empty strings, empty arrays, etc. are treated as true. For examples,
1919

2020
```
21-
{% assign empty_string = %}
21+
{% assign empty_string = "" %}
2222
{% if empty_string %}
2323
<p>This will render.</p>
2424
{% endif %}

0 commit comments

Comments
 (0)