mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 20:33:32 +08:00
fix(all): Ionic components that use child Ionic components are now correctly defined (#24191)
resolves #23571, #24116, #24129 Co-authored-by: Liam DeBeasi <liamdebeasi@icloud.com>
This commit is contained in:
@ -133,7 +133,7 @@ export class PickerColumnInternal implements ComponentInterface {
|
||||
private inputModeChange = (ev: PickerInternalCustomEvent) => {
|
||||
if (!this.numericInput) { return; }
|
||||
|
||||
const { inputMode, inputModeColumn } = ev.detail;
|
||||
const { useInputMode, inputModeColumn } = ev.detail;
|
||||
|
||||
/**
|
||||
* If inputModeColumn is undefined then this means
|
||||
@ -141,7 +141,7 @@ export class PickerColumnInternal implements ComponentInterface {
|
||||
*/
|
||||
const isColumnActive = inputModeColumn === undefined || inputModeColumn === this.el;
|
||||
|
||||
if (!inputMode || !isColumnActive) {
|
||||
if (!useInputMode || !isColumnActive) {
|
||||
this.isActive = false;
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user