We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbb4eee commit e6c0aa2Copy full SHA for e6c0aa2
1 file changed
nativescript-core/ui/dialogs/dialogs.ios.ts
@@ -114,11 +114,11 @@ export function confirm(arg: any): Promise<boolean> {
114
try {
115
let options = !isDialogOptions(arg)
116
? {
117
- title: CONFIRM,
118
- okButtonText: OK,
119
- cancelButtonText: CANCEL,
120
- message: arg + "",
121
- }
+ title: CONFIRM,
+ okButtonText: OK,
+ cancelButtonText: CANCEL,
+ message: arg + "",
+ }
122
: arg;
123
let alertController = UIAlertController.alertControllerWithTitleMessagePreferredStyle(
124
options.title,
0 commit comments