diff options
| author | Danail Dimitrov <danaildimitrov321@gmail.com> | 2021-03-14 21:48:04 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-14 21:48:04 +0200 |
| commit | 8bd52ec0e9a58405376b0a9ac08ce8e35bad8599 (patch) | |
| tree | 2b836291af4bc6801d7d809c828eb3e7d58a027a /src/app/components/post/post.component.html | |
| parent | 988c09b9233fd356b056b62593494772a2061993 (diff) | |
| parent | e4fc300d2fe82084c67c50258c76b60248850863 (diff) | |
| download | DevHive-Angular-8bd52ec0e9a58405376b0a9ac08ce8e35bad8599.tar DevHive-Angular-8bd52ec0e9a58405376b0a9ac08ce8e35bad8599.tar.gz DevHive-Angular-8bd52ec0e9a58405376b0a9ac08ce8e35bad8599.zip | |
Merge pull request #2 from Team-Kaleidoscope/rating_system
Rating system
Diffstat (limited to 'src/app/components/post/post.component.html')
| -rw-r--r-- | src/app/components/post/post.component.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app/components/post/post.component.html b/src/app/components/post/post.component.html index 4ba4d43..1603ebf 100644 --- a/src/app/components/post/post.component.html +++ b/src/app/components/post/post.component.html @@ -30,13 +30,13 @@ </div> </section> <section class="rating"> - <button class="vote"> + <button class="vote" (click)="votePost(true)"> ᐃ </button> <summary class="score"> {{ votesNumber }} </summary> - <button class="vote"> + <button class="vote" (click)="votePost(false)"> ᐁ </button> </section> |
