Skip to content

Commit

Permalink
[Module Manager] Fix punctuation in reload prompt (#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 Jul 15, 2020
1 parent 28d4a14 commit 91b10cc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/module_manager/jsx/modulemanager.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 91b10cc

Please sign in to comment.