Skip to content

Commit

Permalink
fix: uncomment intl formatters for number and money type columns
Browse files Browse the repository at this point in the history
  • Loading branch information
Kreyu committed Sep 13, 2023
1 parent e70f7b6 commit 6d9f5da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Resources/views/themes/base.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@
{# @var array intl_formatter_options - Options used to configure the Intl formatter #}

{% if use_intl_formatter %}
{#{% set value = value|format_number(intl_formatter_options.attrs, intl_formatter_options.style) %}#}
{% set value = value|format_number(intl_formatter_options.attrs, intl_formatter_options.style) %}
{% endif %}

{{- block('column_text_value') -}}
Expand All @@ -386,7 +386,7 @@
{# @var string currency #}

{% if use_intl_formatter %}
{#{% set value = value|format_currency(currency, intl_formatter_options.attrs) %}#}
{% set value = value|format_currency(currency, intl_formatter_options.attrs) %}
{% endif %}

{{- block('column_text_value') -}}
Expand Down

0 comments on commit 6d9f5da

Please sign in to comment.