Compare commits
2 Commits
2ebf9d9ba0
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 9fea6504c6 | |||
| e391ff6915 |
@@ -133,7 +133,7 @@ const saveChanges = async () => {
|
||||
label="Current Password"
|
||||
placeholder="············"
|
||||
variant="outlined"
|
||||
autocomplete="off"
|
||||
autocomplete="new-password"
|
||||
@click:append-inner="isCurrentPasswordVisible = !isCurrentPasswordVisible"
|
||||
/>
|
||||
</VCol>
|
||||
@@ -150,7 +150,7 @@ const saveChanges = async () => {
|
||||
label="New Password"
|
||||
placeholder="············"
|
||||
variant="outlined"
|
||||
autocomplete="suppress"
|
||||
autocomplete="new-password"
|
||||
@click:append-inner="isNewPasswordVisible = !isNewPasswordVisible"
|
||||
/>
|
||||
</VCol>
|
||||
@@ -164,7 +164,7 @@ const saveChanges = async () => {
|
||||
label="Confirm New Password"
|
||||
placeholder="············"
|
||||
variant="outlined"
|
||||
autocomplete="suppress"
|
||||
autocomplete="new-password"
|
||||
:error="confirmPassword.length > 0 && confirmPassword !== newPassword"
|
||||
:error-messages="confirmPassword.length > 0 && confirmPassword !== newPassword ? ['Passwords do not match'] : []"
|
||||
@click:append-inner="isConfirmPasswordVisible = !isConfirmPasswordVisible"
|
||||
|
||||
@@ -177,7 +177,7 @@ abstract class IntegrationTestCase extends TestCase
|
||||
// process-level error handler after the in-process request.
|
||||
$application = static::buildApplication();
|
||||
try {
|
||||
$response = $application->handleHttp($request);
|
||||
$response = $application->runHttpRequest($request);
|
||||
} finally {
|
||||
$application->shutdown();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user