mirror of
https://gitlab.com/MrFry/qmining-page
synced 2025-04-01 20:23:44 +02:00
Todo table scroll, clickable columns now stored in server
This commit is contained in:
parent
50e8fd271a
commit
c68a445117
3 changed files with 19 additions and 4 deletions
|
@ -2,10 +2,8 @@ import React from 'react'
|
|||
|
||||
import styles from './todoCard.module.css'
|
||||
|
||||
const clickableTypes = ['todo', 'blocked', 'inprogress', 'testing']
|
||||
|
||||
export default function TodoCard(props) {
|
||||
const { categories, type, onClick, userId } = props
|
||||
const { categories, type, onClick, userId, clickableTypes } = props
|
||||
const { name, description, category, points, votes, id } = props.cardData
|
||||
const clickable = clickableTypes.includes(type)
|
||||
const voted = votes.includes(userId)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue