fix(avatar settings): add timestamp field to let users add existing signature

This commit is contained in:
Tom (plebeius.eth)
2024-12-06 12:50:19 +01:00
parent 2e7a1d91ce
commit 4263b44458
2 changed files with 13 additions and 1 deletions

View File

@@ -69,7 +69,7 @@
}
.copyMessage a {
color: var(--text-primary);
color: var(--link-primary);
}
.copyMessage a:hover {

View File

@@ -192,6 +192,18 @@ const AvatarSettings = () => {
}}
/>
</div>
<div className={styles.avatarSettingInput}>
<span className={styles.settingTitle}>{t('timestamp')}</span>
<input
type='text'
placeholder='Timestamp'
autoCorrect='off'
autoComplete='off'
spellCheck='false'
value={timestamp}
onChange={(e) => setTimestamp(Number(e.target.value))}
/>
</div>
<div className={styles.pasteSignature}>
<span className={styles.settingTitle}>{t('paste_signature')}</span>
<input