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 (
|
return (
|
||||||
<div className={styles.container}>
|
<div className={styles.container}>
|
||||||
<div
|
<div
|
||||||
|
title={upvotes.join(', ')}
|
||||||
className={styles.action}
|
className={styles.action}
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
e.stopPropagation()
|
e.stopPropagation()
|
||||||
|
@ -34,6 +35,7 @@ export default function UpDownVote({
|
||||||
<div className={`${upvoted && styles.voted}`}>{upvotes.length}</div>
|
<div className={`${upvoted && styles.voted}`}>{upvotes.length}</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
|
title={downvotes.join(', ')}
|
||||||
className={styles.action}
|
className={styles.action}
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
e.stopPropagation()
|
e.stopPropagation()
|
||||||
|
|
|
@ -352,7 +352,9 @@ export default function UserFiles({ router, globalData }) {
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<div>{name}</div>
|
<div>{name}</div>
|
||||||
<div>{new Date(date).toDateString()}</div>
|
<div title={new Date(date).toLocaleString()}>
|
||||||
|
{new Date(date).toDateString()}
|
||||||
|
</div>
|
||||||
<div>
|
<div>
|
||||||
{currDir
|
{currDir
|
||||||
? (size / 1000000).toFixed(2).toString() + ' MB'
|
? (size / 1000000).toFixed(2).toString() + ' MB'
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue