Skip to content

Commit

Permalink
chore: fix templating
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian2012 committed Apr 9, 2024
1 parent 65e2000 commit 89adc0e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ with
where
1 = 1
{% raw %}
{% if from_dttm is not none %}
{% if from_dttm %}
and attempted_on > date('{{ from_dttm }}')
{% endif %}
{% if to_dttm is not none %}
{% if to_dttm %}
and attempted_on < date('{{ to_dttm }}')
{% endif %}
{% endraw %}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ with
where
1 = 1
{% raw %}
{% if from_dttm is not none %}
{% if from_dttm %}
and viewed_on > date('{{ from_dttm }}')
{% endif %}
{% if to_dttm is not none %}
{% if to_dttm %}
and viewed_on < date('{{ to_dttm }}')
{% endif %}
{% endraw %}
Expand Down

0 comments on commit 89adc0e

Please sign in to comment.