Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: silverstripe/silverstripe-admin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4e93b523ea051ae59890fda1aadbb420042d2235
Choose a base ref
..
head repository: silverstripe/silverstripe-admin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 582ab51939b002de5636a5293ee08ed79e99c702
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +1 −1 client/dist/js/bundle.js
  2. +1 −1 client/src/legacy/ConfirmedPasswordField.js
2 changes: 1 addition & 1 deletion client/dist/js/bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion client/src/legacy/ConfirmedPasswordField.js
Original file line number Diff line number Diff line change
@@ -31,7 +31,7 @@ $(document).on('input', '.confirmedpassword .password', function() {
}).done(function(data) {
const json = JSON.parse(data);
const level = json.valid ? 'success' : 'danger';
$strength.html('<p class="alert alert-' + level + ' validation;" role="alert">' + json.message + '</p>');
$strength.html('<p class="alert alert-' + level + ' validation" role="alert">' + json.message + '</p>');
});
}, 300)()
});