unoffical wafrn mirror wafrn.net
atproto social-network activitypub
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: remove unused attributes

old old material design moment

+2 -8
+2 -8
packages/frontend/src/app/components/post/post-header/post-header.component.html
··· 37 37 !postService.followedUserIds.includes(fragment.userId) && 38 38 loggedIn() 39 39 ) { 40 - <button 41 - mat-button 42 - color="accent" 43 - class="text-sm follow-button" 44 - style="text-wrap: nowrap" 45 - (click)="followUser(fragment)" 46 - > 40 + <button mat-button class="text-sm follow-button" style="text-wrap: nowrap" (click)="followUser(fragment)"> 47 41 {{ 'post-header.follow' | translate }} 48 42 </button> 49 43 } 50 44 @if (postService.notYetAcceptedFollowedUsersIds.includes(fragment.userId) && loggedIn()) { 51 - <button mat-button color="accent" class="text-sm follow-button" (click)="unfollowUser(fragment.userId)"> 45 + <button mat-button class="text-sm follow-button" (click)="unfollowUser(fragment.userId)"> 52 46 {{ 'post-header.awaitingApproval' | translate }} 53 47 </button> 54 48 }