Toggle navigation
Toggle navigation
This project
Loading...
Sign in
万朱浩
/
Venue-Ops
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
马一丁
2025-12-16 14:17:31 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
e0af0a050b92d4e43787ba23685105e476a4c9e4
e0af0a05
1 parent
86420c0f
AttributeError when collecting blocks from non-dict table cells
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
0 deletions
ReportEngine/renderers/html_renderer.py
ReportEngine/renderers/html_renderer.py
View file @
e0af0a0
...
...
@@ -914,6 +914,7 @@ class HTMLRenderer:
return
collected
if
payload
.
get
(
"cells"
)
and
not
block_type
:
for
cell
in
payload
[
"cells"
]:
if
isinstance
(
cell
,
dict
):
collected
.
extend
(
self
.
_collect_blocks_from_payload
(
cell
.
get
(
"blocks"
)))
return
collected
if
payload
.
get
(
"items"
)
and
not
block_type
:
...
...
Please
register
or
login
to post a comment