Fix typo and update notification wording (#1100)

This commit is contained in:
Cong Hoang Nguyen 2022-12-13 14:38:45 +11:00 committed by GitHub
parent d7297b567d
commit 391d00bcb9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,7 +29,7 @@
savedConfig = resetConfig.oauth; savedConfig = resetConfig.oauth;
notificationController.show({ notificationController.show({
message: 'Reset OAuth settings to the recent saved settings', message: 'Reset OAuth settings to the last saved settings',
type: NotificationType.Info type: NotificationType.Info
}); });
} }
@ -129,7 +129,7 @@
<div class="mt-4"> <div class="mt-4">
<SettingSwitch <SettingSwitch
title="AUTO REGISTER" title="AUTO REGISTER"
subtitle="Automatically register new users after singning in with OAuth" subtitle="Automatically register new users after signing in with OAuth"
bind:checked={oauthConfig.autoRegister} bind:checked={oauthConfig.autoRegister}
disabled={!oauthConfig.enabled} disabled={!oauthConfig.enabled}
/> />