diff --git a/core/field_dropdown.ts b/core/field_dropdown.ts index 6fb779c4f..d92d02ec2 100644 --- a/core/field_dropdown.ts +++ b/core/field_dropdown.ts @@ -229,6 +229,9 @@ export class FieldDropdown extends Field { : ' ' + FieldDropdown.ARROW_CHAR, ), ); + if (this.getConstants()!.FIELD_TEXT_BASELINE_CENTER) { + this.arrow.setAttribute('dominant-baseline', 'central'); + } if (this.getSourceBlock()?.RTL) { this.getTextElement().insertBefore(this.arrow, this.textContent_); } else {