Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions frontend/src/app/dashboard/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -835,18 +835,19 @@ Start writing your LaTeX document here...
</td>
<td>
<div className="dash-td-actions">
<button className="dash-icon-btn" aria-label="Copy">
<button className="dash-icon-btn" aria-label="Copy" title="Copy project">
<IconCopy size={15} />
</button>
<button className="dash-icon-btn" aria-label="Download">
<button className="dash-icon-btn" aria-label="Download" title="Download project">
<IconDownload size={15} />
</button>
<button className="dash-icon-btn" aria-label="Share">
<button className="dash-icon-btn" aria-label="Share" title="Share project">
<IconShare size={15} />
</button>
<button
className="dash-icon-btn"
aria-label="Delete"
title="Delete project"
onClick={(e) => handleDeleteOne(project.id, e)}
>
<IconTrashSmall size={15} />
Expand Down Expand Up @@ -996,4 +997,4 @@ Start writing your LaTeX document here...
)}
</div>
);
}
}
Loading