mirror of
https://github.com/plebbit/seedit.git
synced 2026-05-24 00:29:58 -04:00
fix(avatar settings): add timestamp field to let users add existing signature
This commit is contained in:
@@ -69,7 +69,7 @@
|
||||
}
|
||||
|
||||
.copyMessage a {
|
||||
color: var(--text-primary);
|
||||
color: var(--link-primary);
|
||||
}
|
||||
|
||||
.copyMessage a:hover {
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user