From e2df0fc2885cb994886c0af863035f50bb849948 Mon Sep 17 00:00:00 2001 From: Mike Harvey <43474485+mikeharv@users.noreply.github.com> Date: Mon, 8 Apr 2024 17:56:36 -0400 Subject: [PATCH] fix: correct dropdown arrow placement for Thrasos on Safari (#8017) --- core/field_dropdown.ts | 3 +++ 1 file changed, 3 insertions(+) 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 {