Skip to content

Commit fbc42c5

Browse files
committed
added highlight for ionic theme
1 parent 9df7cb0 commit fbc42c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/components/select/select.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1096,7 +1096,7 @@ export class Select implements ComponentInterface {
10961096
const rtl = isRTL(el) ? 'rtl' : 'ltr';
10971097
const inItem = hostContext('ion-item', this.el);
10981098
const size = this.getSize();
1099-
const shouldRenderHighlight = theme === 'md' && fill !== 'outline' && !inItem;
1099+
const shouldRenderHighlight = (theme === 'md' || theme === 'ionic') && fill !== 'outline' && !inItem;
11001100

11011101
const hasValue = this.hasValue();
11021102
const hasStartEndSlots = el.querySelector('[slot="start"], [slot="end"]') !== null;

0 commit comments

Comments
 (0)