FIX: uses absolute strategy on ipad (#29754)

The absolute strategy was causing issues on modals.
This commit is contained in:
Joffrey JAFFEUX 2024-11-14 15:23:06 +09:00 committed by GitHub
parent 42b1ca8f78
commit 9aae4df273
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1171,7 +1171,7 @@ export default class SelectKit extends Component.extend(UtilsMixin) {
return placementStrategy;
}
if (this.capabilities.isIpadOS || this.site.mobileView) {
if (this.site.mobileView) {
placementStrategy =
this.selectKit.options.mobilePlacementStrategy || "absolute";
} else {