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:
@@ -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'
|
||||
|
Reference in New Issue
Block a user