fix(picker): fix iOS picker options that shouldn't be showing (#16055)

This commit is contained in:
Adam Bradley
2018-10-23 23:13:45 -05:00
committed by GitHub
parent b2021fd9c4
commit 02ef52b85c
3 changed files with 6 additions and 0 deletions

View File

@ -116,7 +116,10 @@ export class PickerColumnCmp implements ComponentInterface {
translateY = 0;
translateZ = 90;
transform = `rotateX(${rotateX}deg) `;
} else {
translateY = -9999;
}
} else {
translateZ = 0;
translateY = optOffset;