Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
withinJoel committed Aug 22, 2024
1 parent 9eada81 commit 943a971
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/resources/main/static/projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ <h2 class="card-title">Project List</h2>
<td>${project.description || 'No description'}</td>
<td>${project.status || 'No status'}</td>
<td>${project.start || 'No Start'}</td>
<td>${project.end || 'No end'}</td>
<td>${project.end || 'In progress'}</td>
<td>${employeeName}</td>
<td>
<button class="btn-edit" onclick="showEditProjectForm(${project.id})">Edit</button>
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/static/projects.html
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ <h2 class="card-title">Project List</h2>
<td>${project.description || 'No description'}</td>
<td>${project.status || 'No status'}</td>
<td>${project.start || 'No Start'}</td>
<td>${project.end || 'No end'}</td>
<td>${project.end || 'In progress'}</td>
<td>${employeeName}</td>
<td>
<button class="btn-edit" onclick="showEditProjectForm(${project.id})">Edit</button>
Expand Down

0 comments on commit 943a971

Please sign in to comment.