Skip to content

Commit

Permalink
chore(copyright): add copyright to footer
Browse files Browse the repository at this point in the history
  • Loading branch information
brucetony committed Jul 31, 2024
1 parent 0c2b3e8 commit e055658
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
16 changes: 12 additions & 4 deletions components/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,18 @@
<footer>
<div class="page-footer">
<div class="footer-description">
<a href="https://github.com/PrivateAIM" class="github-link">
<i class="pi pi-github"></i>
Node UI
</a>
<div class="github">
<a
href="https://github.com/PrivateAIM/node-ui/issues"
class="github-link"
>
<i class="pi pi-github"></i>
Submit an Issue
</a>
- © 2024
<a href="https://privateaim.de/">PrivateAim</a>
</div>
<div class="copyright"></div>
</div>
</div>
</footer>
Expand Down
1 change: 1 addition & 0 deletions components/projects/ProposalTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ function updateTable(newData: ProjectNode) {
for (let row of proposals.value) {
if (row.id === newData.id) {
row.approval_status = newData.approval_status;
return;
}
}
}
Expand Down

0 comments on commit e055658

Please sign in to comment.