docs(select-option): clarify that disabled does not apply for action sheets (#21584)

resolves https://github.com/ionic-team/ionic/issues/21578
This commit is contained in:
Liam DeBeasi
2020-06-19 13:45:49 -04:00
committed by GitHub
parent 04ce642369
commit fbcd3f8c08
3 changed files with 7 additions and 7 deletions

View File

@ -14,7 +14,7 @@ export class SelectOption implements ComponentInterface {
@Element() el!: HTMLElement;
/**
* If `true`, the user cannot interact with the select option.
* If `true`, the user cannot interact with the select option. This property does not apply when `interface="action-sheet"` as `ion-action-sheet` does not allow for disabled buttons.
*/
@Prop() disabled = false;