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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue