@@ -62,7 +62,6 @@ export default function Article() {
6262 getArticle ( skipBefore / 1000 )
6363 . then ( v => {
6464 setStatus ( { details : v } ) ;
65- setOtherRefuseCommit ( '' ) ;
6665 if ( v . article ) setSkipBefore ( v . article . promoteResult . updateAt * 1000 ) ;
6766 } )
6867 . catch (
@@ -74,6 +73,7 @@ export default function Article() {
7473 setStatus ( { details : details , submiting : true } ) ;
7574 await submitArticleCheckResult ( [ details . article . lid , refuseCommit || true ] ) ;
7675 setStatus ( null ) ;
76+ setOtherRefuseCommit ( '' ) ;
7777 updateArticle ( ) ;
7878 }
7979
@@ -119,34 +119,34 @@ export default function Article() {
119119 'YYYY/MM/DD HH:mm:ss'
120120 ) }
121121 。文章 LID:
122- < a
122+ < Link
123123 href = { `https://www.luogu.com.cn/article/${ details . article . lid } ` }
124124 target = "_blank"
125125 >
126126 { details . article . lid }
127- </ a >
127+ </ Link >
128128 </ Text >
129129 { details . article . solutionFor && (
130130 < Text >
131131 关联于题目{ ' ' }
132- < a
132+ < Link
133133 href = { `https://www.luogu.com.cn/problem/${ details . article . solutionFor . pid } ` }
134134 target = "_blank"
135135 >
136136 { details . article . solutionFor . pid } { ' ' }
137137 { details . article . solutionFor . title }
138- </ a >
138+ </ Link >
139139 。
140140 { details . countForProblem && (
141141 < >
142142 共有 { details . countForProblem . pending } 篇待审核题解,
143143 { details . countForProblem . available } 篇
144- < a
144+ < Link
145145 href = { `https://www.luogu.com.cn/problem/solution/${ details . article . solutionFor . pid } ` }
146146 target = "_blank"
147147 >
148148 已通过题解
149- </ a >
149+ </ Link >
150150 。
151151 </ >
152152 ) }
@@ -185,6 +185,7 @@ export default function Article() {
185185 很遗憾,您的《
186186 < Link
187187 href = { `https://www.luogu.com.cn/article/${ details . article . lid } ` }
188+ target = '_blank'
188189 >
189190 { details . article . title }
190191 </ Link >
0 commit comments