Skip to content

Commit

Permalink
fix liquid conditions
Browse files Browse the repository at this point in the history
  • Loading branch information
masutaka committed Jan 6, 2022
1 parent f8c7b6b commit 6517bf6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gcp_billing_export.view.lkml
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ view: gcp_billing_export {
value_format_name: decimal_2
html: {% if currency._value == 'GBP' %}
<a href="{{ link }}"> £{{ rendered_value }}</a>
{% elsif currency == 'USD' %}
{% elsif currency._value == 'USD' %}
<a href="{{ link }}"> ${{ rendered_value }}</a>
{% elsif currency == 'EUR' %}
{% elsif currency._value == 'EUR' %}
<a href="{{ link }}"> €{{ rendered_value }}</a>
{% else %}
<a href="{{ link }}"> {{ rendered_value }} {{ currency._value }}</a>
Expand All @@ -84,9 +84,9 @@ view: gcp_billing_export {
value_format_name: decimal_2
html: {% if currency._value == 'GBP' %}
<a href="{{ link }}"> £{{ rendered_value }}</a>
{% elsif currency == 'USD' %}
{% elsif currency._value == 'USD' %}
<a href="{{ link }}"> ${{ rendered_value }}</a>
{% elsif currency == 'EUR' %}
{% elsif currency._value == 'EUR' %}
<a href="{{ link }}"> €{{ rendered_value }}</a>
{% else %}
<a href="{{ link }}"> {{ rendered_value }} {{ currency._value }}</a>
Expand Down

0 comments on commit 6517bf6

Please sign in to comment.