Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
View issue level access limits(Press Alt + Right arrow for more information)
Request for new functionality
View staffing
Description
Expected Outcome: Tables and charts with IMAGE semantic type dimensions in the copied report should function as expected. Source report image
Actual Outcome: Tables and charts with the IMAGE semantic type dimension in the copied report receive an "Invalid Dimension" error. Copied report image
This problem specifically occurs with community connectors:
Community Connector Code -
Community Connector -
Report -
The schema of the Image URL and Image field:
const schema = [
{
name: 'image_url',
label: 'Image URL',
description: 'Image link',
dataType: 'STRING',
semantics: {
conceptType: 'DIMENSION',
semanticType: 'URL'
}
},
{
name: 'image',
label: 'Image',
description: 'Image',
dataType: 'STRING',
isDefault: true,
semantics: {
conceptType: 'DIMENSION',
semanticType: 'IMAGE'
},
formula: "IMAGE(photo_url)",
}
]
To reproduce: try copying the provided report
As a temporary solution, I've been resorting to manually setting these hidden image dimensions to 'show' in the copied report's embedded data source.
While the above workaround does seem to patch up the issue temporarily, it is far from a viable long-term solution. Any guidance on how to address this problem in a more permanent manner would be immensely appreciated.
Thanks in advance for your time and help.
reference: