mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
add missing tokenId field to avatar settings
This commit is contained in:
@@ -67,6 +67,10 @@
|
|||||||
content: '4.\00a0';
|
content: '4.\00a0';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.settingField.step5::before {
|
||||||
|
content: '5.\00a0';
|
||||||
|
}
|
||||||
|
|
||||||
.settingField a {
|
.settingField a {
|
||||||
color: var(--post-link-text-color);
|
color: var(--post-link-text-color);
|
||||||
text-decoration: var(--post-content-link-text-decoration);
|
text-decoration: var(--post-content-link-text-decoration);
|
||||||
|
|||||||
@@ -172,6 +172,18 @@ const AvatarSettings = () => {
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div className={`${styles.settingField} ${styles.step3}`}>
|
<div className={`${styles.settingField} ${styles.step3}`}>
|
||||||
|
<span className={styles.settingTitle}>Token ID: </span>
|
||||||
|
<input
|
||||||
|
type='text'
|
||||||
|
placeholder='123'
|
||||||
|
autoCorrect='off'
|
||||||
|
autoComplete='off'
|
||||||
|
spellCheck='false'
|
||||||
|
defaultValue={account?.author?.avatar?.id}
|
||||||
|
onChange={(e) => setTokenId(e.target.value)}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className={`${styles.settingField} ${styles.step4}`}>
|
||||||
<span className={styles.settingTitle}>
|
<span className={styles.settingTitle}>
|
||||||
<Trans
|
<Trans
|
||||||
i18nKey='copy_message_etherscan'
|
i18nKey='copy_message_etherscan'
|
||||||
@@ -196,7 +208,7 @@ const AvatarSettings = () => {
|
|||||||
onChange={(e) => setTimestamp(Number(e.target.value))}
|
onChange={(e) => setTimestamp(Number(e.target.value))}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div className={`${styles.settingField} ${styles.step4}`}>
|
<div className={`${styles.settingField} ${styles.step5}`}>
|
||||||
<span className={styles.settingTitle}>{_.capitalize(t('paste_signature'))}: </span>
|
<span className={styles.settingTitle}>{_.capitalize(t('paste_signature'))}: </span>
|
||||||
<input
|
<input
|
||||||
type='text'
|
type='text'
|
||||||
|
|||||||
Reference in New Issue
Block a user