Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
沈秋雨
/
import_hk_songs
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
ad342c08
...
ad342c08caa1a7a2faebbcf1e64b7b39dec27e73
authored
2026-07-17 17:22:50 +0800
by
沈秋雨
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fix
1 parent
6cce9eaa
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
l2_review_dashboard.html
l2_review_dashboard.html
View file @
ad342c0
...
...
@@ -682,9 +682,9 @@
function
initReviewerIdentity
()
{
state
.
reviewer
=
(
localStorage
.
getItem
(
'l2ReviewerName'
)
||
''
).
trim
();
if
(
!
state
.
reviewer
)
{
state
.
reviewer
=
(
window
.
prompt
(
'请输入
审核人姓名或工号
'
)
||
''
).
trim
();
state
.
reviewer
=
(
window
.
prompt
(
'请输入
你的昵称
'
)
||
''
).
trim
();
}
if
(
!
state
.
reviewer
)
throw
new
Error
(
'必须填写
审核人姓名或工号
后才能开始审核'
);
if
(
!
state
.
reviewer
)
throw
new
Error
(
'必须填写
你的昵称
后才能开始审核'
);
localStorage
.
setItem
(
'l2ReviewerName'
,
state
.
reviewer
);
els
.
reviewerInput
.
value
=
state
.
reviewer
;
state
.
clientToken
=
sessionStorage
.
getItem
(
'l2ReviewClientToken'
)
||
newClientToken
();
...
...
Please
register
or
sign in
to post a comment