Kaynağa Gözat

Merge pull request #18320 from frappe/mergify/bp/version-14-hotfix/pr-18318

fix: convert string check to tuple check (backport #18318)
version-14
Ankush Menat 2 yıl önce
committed by GitHub
ebeveyn
işleme
160a15bac1
Veri tabanında bu imza için bilinen anahtar bulunamadı GPG Anahtar Kimliği: 4AEE18F83AFDEB23
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. +1
    -1
      frappe/templates/print_formats/standard_macros.html

+ 1
- 1
frappe/templates/print_formats/standard_macros.html Dosyayı Görüntüle

@@ -181,7 +181,7 @@ data-fieldname="{{ df.fieldname }}" data-fieldtype="{{ df.fieldtype }}"
{% if no_of_cols >= 3 %}{{ "" }}
{%- elif df.align -%}{{ "text-" + df.align }}
{%- elif df.fieldtype in ("Int", "Float", "Currency", "Percent") -%}{{ "text-right" }}
{%- elif df.fieldtype in ("Check") -%}{{ "text-center" }}
{%- elif df.fieldtype in ("Check",) -%}{{ "text-center" }}
{%- else -%}{{ "" }}
{%- endif -%}
{% endmacro %}


Yükleniyor…
İptal
Kaydet