Conversation
WalkthroughThe recent updates to the Changes
Sequence Diagram(s)sequenceDiagram
participant User
participant Parser
participant DataStore
User->>Parser: Request to convert sheet
Parser->>DataStore: Fetch rows
alt headerSelectionEnabled is true
Parser->>Parser: Use selected headers
else headerSelectionEnabled is false
Parser->>Parser: Use headerRowValues from rows
end
Parser->>User: Return converted data
Recent review detailsConfiguration used: CodeRabbit UI Files selected for processing (1)
Additional comments not posted (5)
|
|
Just needs a changeset! |
Please explain how to summarize this PR for the Changelog:
Fixes an issue where the presence of empty columns would shift the extracted cell values into other columns. While we remove null values for the purpose of header detection, we need to use the original data when constructing the actual headers.
Tell code reviewer how and what to test:
An xlsx file with an empty column between filled columns should have the filled columns extracted correctly.