fix: program enrollment button labels (backport #30148) (#30149)

Co-authored-by: Rucha Mahabal <ruchamahabal2@gmail.com>
This commit is contained in:
mergify[bot]
2022-03-10 10:07:47 +05:30
committed by GitHub
parent c9d0692fb4
commit 31ba09b3d0

View File

@@ -39,16 +39,13 @@
frappe.call(opts).then(res => { frappe.call(opts).then(res => {
let success_dialog = new frappe.ui.Dialog({ let success_dialog = new frappe.ui.Dialog({
title: __('Success'), title: __('Success'),
primary_action_label: __('View Program Content'), primary_action_label: __('OK'),
primary_action: function() { primary_action: function() {
window.location.reload(); window.location.reload();
},
secondary_action: function() {
window.location.reload();
} }
}) })
success_dialog.show(); success_dialog.show();
success_dialog.set_message(__('You have successfully enrolled for the program ')); success_dialog.set_message(__('You have successfully enrolled for the program.'));
}) })
} }
</script> </script>