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
4 changes: 2 additions & 2 deletions public/projects.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
<div class="glass-card" style="width: 100%; max-width: 500px; padding: 32px;">
<div style="display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px;">
<h2 class="text-gradient">New Project</h2>
<button class="btn-icon" onclick="closeCreateModal()">
<button class="btn-icon" onclick="closeCreateModal()" aria-label="Close modal" title="Close">
<iconify-icon icon="mdi:close"></iconify-icon>
</button>
</div>
Expand Down Expand Up @@ -380,7 +380,7 @@ function switchWorkspace(workspace) {
<div class="project-meta">
<span class="project-date">Modified: ${project.modified}</span>
<div class="project-actions">
<button class="btn-icon" style="width: 32px; height: 32px;" onclick="event.stopPropagation(); deleteProject('${project.path.replace(/\\/g, '\\\\')}')" title="Delete">
<button class="btn-icon" style="width: 32px; height: 32px;" onclick="event.stopPropagation(); deleteProject('${project.path.replace(/\\/g, '\\\\')}')" title="Delete" aria-label="Delete project">
<iconify-icon icon="mdi:delete-outline"></iconify-icon>
</button>
</div>
Expand Down