diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-02-29 17:41:17 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2024-02-29 17:41:17 +0100 |
commit | f6c41c587c4d0c9d37ee8992b8226257d57e4ee3 (patch) | |
tree | 9c01bea2935adc44097a88ffe095f8616b04812d | |
parent | 294199bf4b369e83c844c3b3143d0d597d32b669 (diff) | |
download | Ishtar-f6c41c587c4d0c9d37ee8992b8226257d57e4ee3.tar.bz2 Ishtar-f6c41c587c4d0c9d37ee8992b8226257d57e4ee3.zip |
🩹 table export: set to empty a column with bad configuration
-rw-r--r-- | ishtar_common/views_item.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ishtar_common/views_item.py b/ishtar_common/views_item.py index 8095fcf53..3f888ce14 100644 --- a/ishtar_common/views_item.py +++ b/ishtar_common/views_item.py @@ -2318,6 +2318,7 @@ def get_item( multiply=multiply, ) + table_cols = [col if col != [] else '' for col in table_cols] query_table_cols = [] for idx, cols in enumerate(table_cols): if type(cols) not in (list, tuple): |