mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-20 22:53:49 +00:00
addAddress: improve boolean variables
This commit is contained in:
@@ -47,16 +47,16 @@
|
||||
data-button-size="{{ buttonSize|e('html_attr') }}"
|
||||
{% endif %}
|
||||
|
||||
{% if buttonDisplayText is defined and buttonDisplayText == false %}
|
||||
data-button-display-text=false
|
||||
{% if buttonDisplayText is defined and buttonDisplayText != 1 %}
|
||||
data-button-display-text="false"
|
||||
{% endif %}
|
||||
|
||||
{% if bindModalStep1 is defined and bindModalStep1 == false %}
|
||||
data-bind-modal-step1=false
|
||||
{% if bindModalStep1 is defined and bindModalStep1 != 1 %}
|
||||
data-bind-modal-step1="false"
|
||||
{% endif %}
|
||||
|
||||
{% if bindModalStep2 is defined and bindModalStep2 == false %}
|
||||
data-bind-modal-step2=false
|
||||
{% if bindModalStep2 is defined and bindModalStep2 != 1 %}
|
||||
data-bind-modal-step2="false"
|
||||
{% endif %}
|
||||
></div>
|
||||
|
||||
|
Reference in New Issue
Block a user