mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
Added some titles on userfiles rows
This commit is contained in:
parent
5611fd8d66
commit
5d233f549d
2 changed files with 5 additions and 1 deletions
|
@ -17,6 +17,7 @@ export default function UpDownVote({
|
|||
return (
|
||||
<div className={styles.container}>
|
||||
<div
|
||||
title={upvotes.join(', ')}
|
||||
className={styles.action}
|
||||
onClick={(e) => {
|
||||
e.stopPropagation()
|
||||
|
@ -34,6 +35,7 @@ export default function UpDownVote({
|
|||
<div className={`${upvoted && styles.voted}`}>{upvotes.length}</div>
|
||||
</div>
|
||||
<div
|
||||
title={downvotes.join(', ')}
|
||||
className={styles.action}
|
||||
onClick={(e) => {
|
||||
e.stopPropagation()
|
||||
|
|
|
@ -352,7 +352,9 @@ export default function UserFiles({ router, globalData }) {
|
|||
}}
|
||||
>
|
||||
<div>{name}</div>
|
||||
<div>{new Date(date).toDateString()}</div>
|
||||
<div title={new Date(date).toLocaleString()}>
|
||||
{new Date(date).toDateString()}
|
||||
</div>
|
||||
<div>
|
||||
{currDir
|
||||
? (size / 1000000).toFixed(2).toString() + ' MB'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue