Skip to content

Commit

Permalink
[Module Manager] Fix punctuation in reload prompt (aces#6824)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
driusan authored and AlexandraLivadas committed Jun 15, 2021
1 parent eb95b28 commit 3297d51
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions modules/module_manager/jsx/modulemanager.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +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',
Expand Down

0 comments on commit 3297d51

Please # to comment.