From 91b10cccd424f4c22d9220b1359c703d1e03e6ca Mon Sep 17 00:00:00 2001 From: Dave MacFarlane Date: Wed, 15 Jul 2020 11:51:56 -0400 Subject: [PATCH] [Module Manager] Fix punctuation in reload prompt (#6824) The alert prompting the user to reload the page in the module manager had incorrect spacing and punctuation in the message shown to the user. This corrects it. --- modules/module_manager/jsx/modulemanager.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/module_manager/jsx/modulemanager.js b/modules/module_manager/jsx/modulemanager.js index acd4d88b4c6..efc9e6a856e 100644 --- a/modules/module_manager/jsx/modulemanager.js +++ b/modules/module_manager/jsx/modulemanager.js @@ -78,8 +78,8 @@ class ModuleManagerIndex extends Component { if (success === true) { swal.fire({ title: 'Success!', - text: 'Updated ' + id + ' status!' + - 'To apply changes the interface must be reloaded. proceed ?', + text: 'Updated ' + id + ' status! ' + + 'To apply changes the interface must be reloaded. Proceed?', type: 'success', showCancelButton: true, confirmButtonText: 'Reload the page',