From fe8db5d38a364eba5e154d704235e96f31742959 Mon Sep 17 00:00:00 2001 From: Dave MacFarlane Date: Thu, 9 Jul 2020 10:51:45 -0400 Subject: [PATCH] [Module Manager] Fix punctuation in reload prompt 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',