mirror of
https://github.com/TurTaskProject/TurTaskWeb.git
synced 2025-12-18 13:34:08 +01:00
Update table view
This commit is contained in:
parent
243e43dbcc
commit
f981490a9d
@ -51,11 +51,7 @@ export function TableBoard() {
|
||||
{/* head */}
|
||||
<thead>
|
||||
<tr>
|
||||
<th>
|
||||
<label>
|
||||
<input type="checkbox" className="checkbox" />
|
||||
</label>
|
||||
</th>
|
||||
<th></th>
|
||||
<th>Title</th>
|
||||
<th>Description</th>
|
||||
<th>Priority</th>
|
||||
@ -67,9 +63,7 @@ export function TableBoard() {
|
||||
{tasks.map((task, index) => (
|
||||
<tr key={index}>
|
||||
<th>
|
||||
<label>
|
||||
<input type="checkbox" className="checkbox" />
|
||||
</label>
|
||||
<label></label>
|
||||
</th>
|
||||
<td>
|
||||
<div className="flex items-center gap-3">
|
||||
@ -86,9 +80,7 @@ export function TableBoard() {
|
||||
</td>
|
||||
<td>{task.priority}</td>
|
||||
<th>
|
||||
<button className="btn btn-ghost btn-xs">
|
||||
{task.end_event}
|
||||
</button>
|
||||
<button className="btn btn-ghost btn-xs">{task.end_event}</button>
|
||||
</th>
|
||||
</tr>
|
||||
))}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user