Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
open-webui
Commits
bad7dca5
"...composable_kernel_rocm.git" did not exist on "b83c791ea31729da8b9761289d8464e2ea704579"
Commit
bad7dca5
authored
Apr 05, 2024
by
Self Denial
Browse files
Move login page toast error to the bottom of page and enable i18n for translation
parent
69716a5c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
src/lib/components/chat/Settings/Account.svelte
src/lib/components/chat/Settings/Account.svelte
+1
-1
src/routes/auth/+page.svelte
src/routes/auth/+page.svelte
+7
-3
No files found.
src/lib/components/chat/Settings/Account.svelte
View file @
bad7dca5
...
...
@@ -152,7 +152,7 @@
profileImageUrl = generateInitialsImage(name);
} else {
toast.error(
'Canvas pixel test failed, fingerprint evasion likely. Disable fingerprint evasion and try again!',
$i18n.t(
'Canvas pixel test failed, fingerprint evasion likely. Disable fingerprint evasion and try again!'
)
,
{
autoClose: 1000 * 10
}
...
...
src/routes/auth/+page.svelte
View file @
bad7dca5
...
...
@@ -44,9 +44,13 @@
);
if (!canvasPixelTest()) {
toast.error('Canvas pixel test failed, fingerprint evasion likely. Default image used.', {
autoClose: 1000 * 10
});
toast.error(
$i18n.t('Canvas pixel test failed, fingerprint evasion likely. Default image used.'),
{
position: "bottom-center",
autoClose: 1000 * 10,
}
);
}
await setSessionUser(sessionUser);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment