Skip to content

Commit

Permalink
Merge branch 'main' into refactoring/4196-Save-memory-by-not-creating…
Browse files Browse the repository at this point in the history
…-empty-arrays-in-CAS
  • Loading branch information
reckart authored Sep 21, 2023
2 parents 9f626b3 + f1d4f82 commit 3d56e47
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ export class ApacheAnnotatorVisualizer {

const attributes = {
'data-iaa-id': `${span.vid}`,
'data-iaa-label': `${span.label || NO_LABEL}`,
'data-iaa-label': `${span.label || `[${span.layer.name}]` || NO_LABEL}`,
class: classList.join(' '),
style: styleList.join('; ')
}
Expand Down

0 comments on commit 3d56e47

Please sign in to comment.