diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2025-03-30 21:46:54 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2025-03-30 21:46:54 -0400 |
commit | aa5610d0f56c2a048212b3bd3a9ca5671ec855fa (patch) | |
tree | a7c2dcb8c92b16d8d56fc7d12fe185a7eb9625c1 /ufund-ui/src/app/components/need-list/need-list.component.html | |
parent | 2c2957da48b62d16ce24addcc46d0d0ed66f7a9d (diff) | |
download | JellySolutions-aa5610d0f56c2a048212b3bd3a9ca5671ec855fa.tar.gz JellySolutions-aa5610d0f56c2a048212b3bd3a9ca5671ec855fa.tar.bz2 JellySolutions-aa5610d0f56c2a048212b3bd3a9ca5671ec855fa.zip |
Continue working on css
Diffstat (limited to '')
-rw-r--r-- | ufund-ui/src/app/components/need-list/need-list.component.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/ufund-ui/src/app/components/need-list/need-list.component.html b/ufund-ui/src/app/components/need-list/need-list.component.html index 866e5e4..72bc9c5 100644 --- a/ufund-ui/src/app/components/need-list/need-list.component.html +++ b/ufund-ui/src/app/components/need-list/need-list.component.html @@ -1,4 +1,3 @@ -<h1>Needs List</h1> <div id="search-container"> <section> <label for="sort">Sort by: </label> @@ -43,9 +42,9 @@ <button (click)="select(need)" id="need-edit-button-{{need.id}}"> <img class="icon" src="/edit.png" alt="Select"> </button> - <button (click)="delete(need.id)" *ngIf="isManager()"> + <button (click)="delete(need.id)" *ngIf="isManager()"> <img class="icon" src="/delete.png" alt="Delete"> </button> </section> </li> -</ul>
\ No newline at end of file +</ul> |