Skip to content

Commit

Permalink
fix: enable links in viewData
Browse files Browse the repository at this point in the history
  • Loading branch information
gruskal committed Jan 18, 2023
1 parent e062ced commit 248da16
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -94,7 +94,7 @@ public void setData(DataRow dataRow, int rowHeight, CellContentStyle cellContent
}

cellView.setData(cell, dataRow, column);
if(column.representation.type.equals("url") && !dataProvider.isDataView) {
if(column.representation.type.equals("url")) {
setupHyperLink(textView);
}
if(column.isDim && cellContentStyle.wrap) {
Expand Down

0 comments on commit 248da16

Please sign in to comment.