Skip to content

Commit

Permalink
feat: AnnotationView updates Label Render
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerwin-L committed Dec 29, 2021
1 parent b2a474e commit 484395e
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,11 @@ export default class ViewOperation extends BasicToolOperation {
}

if (result?.label) {
headerText = `${result?.label}`;
if (headerText) {
headerText = `${headerText}_${result.label}`;
} else {
headerText = `${result.label}`;
}
}

if (result?.attribute) {
Expand Down

0 comments on commit 484395e

Please sign in to comment.