Skip to content
Snippets Groups Projects
Commit c35f333d authored by Julia Friesel's avatar Julia Friesel
Browse files

Merge branch 'import-alert-buttons-order' into 'master'

Changes order of buttons in the import alert

Closes #372

See merge request bloodyhealth/drip!219
parents b0b2e8ce 417083b0
No related branches found
No related tags found
No related merge requests found
......@@ -11,13 +11,13 @@ export function openImportDialog(onImportData) {
labels.import.title,
labels.import.message,
[{
text: labels.import.replaceOption,
onPress: () => onImportData(false)
text: sharedLabels.cancel, style: 'cancel', onPress: () => { }
}, {
text: labels.import.deleteOption,
onPress: () => onImportData(true)
}, {
text: sharedLabels.cancel, style: 'cancel', onPress: () => { }
text: labels.import.replaceOption,
onPress: () => onImportData(false)
}]
)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment