From 6b003496f892fc840e42afb8c44bb7f86d657a3a Mon Sep 17 00:00:00 2001 From: Alex Happy <1223408988@qq.com> Date: Thu, 17 Sep 2026 15:51:59 +0800 Subject: [PATCH] fix: export link formula collaborator array as nickname in excel --- dtable_events/dtable_io/excel.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dtable_events/dtable_io/excel.py b/dtable_events/dtable_io/excel.py index 5ff18bbe..4d774e97 100644 --- a/dtable_events/dtable_io/excel.py +++ b/dtable_events/dtable_io/excel.py @@ -1401,6 +1401,8 @@ def _format_array_item_value(item, email2nickname, array_type, array_data): return _format_number_display_string(item_value, array_data) if array_type in (ColumnTypes.CREATOR, ColumnTypes.LAST_MODIFIER): return email2nickname.get(cell_data2str(item_value), '') + if array_type == ColumnTypes.COLLABORATOR: + return email2nickname.get(cell_data2str(item_value), cell_data2str(item_value)) if array_type in (ColumnTypes.CTIME, ColumnTypes.MTIME): return convert_time_to_utc_str(cell_data2str(item_value)) if array_type == ColumnTypes.DATE: