diff --git a/app/assets/javascripts/components/annotations/create_annotation_button.ts b/app/assets/javascripts/components/annotations/create_annotation_button.ts index 22d99b8bf8..fbbff2b7b0 100644 --- a/app/assets/javascripts/components/annotations/create_annotation_button.ts +++ b/app/assets/javascripts/components/annotations/create_annotation_button.ts @@ -93,7 +93,7 @@ export class CreateAnnotationButton extends ShadowlessLitElement { // If the range exists, the button should only be shown on the last row of the range // Or on the row where the drag started if the drag is still in progress if (this.isRangeEnd || this.isDragStart) { - classes += "show"; + classes += "show expanded"; } else { classes += "hide"; }