Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
phsl
/
new-api
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Unverified
Commit
28e0115a
authored
Jul 08, 2026
by
Rāna(Bass Ver.)
Committed by
GitHub
Jul 08, 2026
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(web): prevent browser translation from mutating React roots (#5963)
parent
6a437a33
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
web/classic/index.html
+2
-1
web/default/index.html
+2
-1
No files found.
web/classic/index.html
View file @
28e0115a
...
...
@@ -4,6 +4,7 @@
<meta
charset=
"utf-8"
/>
<link
rel=
"icon"
href=
"/logo.png"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
/>
<meta
name=
"google"
content=
"notranslate"
/>
<meta
name=
"theme-color"
content=
"#ffffff"
/>
<meta
name=
"description"
...
...
@@ -23,6 +24,6 @@
<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<div
id=
"root"
></div>
<div
id=
"root"
translate=
"no"
class=
"notranslate"
></div>
</body>
</html>
web/default/index.html
View file @
28e0115a
...
...
@@ -4,6 +4,7 @@
<meta
charset=
"UTF-8"
/>
<link
rel=
"icon"
type=
"image/png"
href=
"/logo.png"
/>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1.0"
/>
<meta
name=
"google"
content=
"notranslate"
/>
<!-- Primary Meta Tags -->
<title>
New API
</title>
...
...
@@ -19,6 +20,6 @@
</head>
<body>
<div
id=
"root"
></div>
<div
id=
"root"
translate=
"no"
class=
"notranslate"
></div>
</body>
</html>
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