-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor code in multiple components and services, including chat, po…
…st-event, profile, user, and metadata services, with changes to templates, interfaces, and logic.
- Loading branch information
Showing
10 changed files
with
188 additions
and
162 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
src/app/components/post-event/replay-profile/replay-profile.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<div class="flex items-center"> | ||
<a [href]="'/profile/' + pubkey" class="flex items-center group"> | ||
<img | ||
class="mr-4 h-10 w-10 rounded-full border border-gray-300 group-hover:shadow-md" | ||
[src]="displayAvatar" | ||
[alt]="displayName" | ||
/> | ||
<span class="font-bold text-gray-800 group-hover:text-blue-500"> | ||
{{ displayName }} | ||
</span> | ||
</a> | ||
</div> |
Empty file.
Oops, something went wrong.