diff --git a/packages/bbui/src/Form/Core/EnvDropdown.svelte b/packages/bbui/src/Form/Core/EnvDropdown.svelte index 43240684c1..61aa50e756 100644 --- a/packages/bbui/src/Form/Core/EnvDropdown.svelte +++ b/packages/bbui/src/Form/Core/EnvDropdown.svelte @@ -122,7 +122,7 @@ bind:this={field} disabled={false} {readonly} - id={"thisOne"} + {id} data-cy={dataCy} value={hbsValue.length ? `{{ ${hbsValue[0]} }}` : value} placeholder={placeholder || ""} @@ -135,7 +135,7 @@ on:focus={onFocus} on:input={onInput} {type} - style="color: white !important;" + style={align ? `text-align: ${align};` : ""} class="spectrum-Textfield-input" inputmode={type === "number" ? "decimal" : "text"} />