We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9df7cb0 commit fbc42c5Copy full SHA for fbc42c5
core/src/components/select/select.tsx
@@ -1096,7 +1096,7 @@ export class Select implements ComponentInterface {
1096
const rtl = isRTL(el) ? 'rtl' : 'ltr';
1097
const inItem = hostContext('ion-item', this.el);
1098
const size = this.getSize();
1099
- const shouldRenderHighlight = theme === 'md' && fill !== 'outline' && !inItem;
+ const shouldRenderHighlight = (theme === 'md' || theme === 'ionic') && fill !== 'outline' && !inItem;
1100
1101
const hasValue = this.hasValue();
1102
const hasStartEndSlots = el.querySelector('[slot="start"], [slot="end"]') !== null;
0 commit comments