Skip to content

Commit 8c5c97a

Browse files
authored
docs(typo): Change target attribute from _black to _blank (#176)
This commit addresses the issue where page navigation incorrectly overwrote the content of previously opened tabs. By changing the target attribute of the a-tag from _black to _blank, new pages will now open in a new tab, preventing the overwriting of existing tabs. Co-authored-by: daniel <[email protected]>
1 parent db51379 commit 8c5c97a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

site/components/ComplexCharts/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export function ComplexCharts() {
4444
<a
4545
className={styles.content}
4646
href={transformUrl({ url: select.link, language, isChinaMirrorHost })}
47-
target='_black'
47+
target='_blank'
4848
>
4949
<video
5050
muted={true}

site/components/LinkCharts/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ export function LinkCharts() {
5757
>
5858
{
5959
data.map((data) => {
60-
return <a className={styles.chart} href={transformUrl({ url: data.link, language, isChinaMirrorHost })} target='_black' >
60+
return <a className={styles.chart} href={transformUrl({ url: data.link, language, isChinaMirrorHost })} target='_blank' >
6161
<div className={styles.title}>{useT(data.title)}</div>
6262
<div className={styles.subTitle}>
6363
<OverflowedText text={useT(data.subTitle)} maxWidth={341} />

site/components/ProjectCard/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ export function ProjectCard() {
241241
className={classNames(col.classNames, styles.card)}
242242
href={url && transformUrl({ url, language, isChinaMirrorHost })}
243243
style={{ cursor: url ? 'pointer' : 'default' }}
244-
target='_black'
244+
target='_blank'
245245
>
246246
{icon && <img src={icon} alt={newTitle} />}
247247
{isSort ?

0 commit comments

Comments
 (0)