Skip to content

Commit

Permalink
Merge pull request #43 from llooker/vitorleepkaln-fix-liquid
Browse files Browse the repository at this point in the history
Update view file to fix Liquid syntax - Last `else` does not need a condition to validate - thanks for catching!
  • Loading branch information
thomasbanghart authored Jul 1, 2020
2 parents 36f8fbc + 13dcb08 commit a8d27d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion redshift_views.view.lkml
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ view: redshift_tables {
<span style="color:darkred">{{ rendered_value }}</span>
{% elsif value >= 25 %}
<span style="color:darkorange">{{ rendered_value }}</span>
{% else value >= 75 %}
{% else %}
{{ rendered_value }}
{% endif %}
;;
Expand Down

0 comments on commit a8d27d0

Please sign in to comment.