diff options
author | Jonty Wareing <jonty@jonty.co.uk> | 2023-07-06 18:12:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-06 12:12:00 -0500 |
commit | f05c2f06d665cb3a9989154fbc82a2b0ea60669a (patch) | |
tree | 426e6ab96ba4f6790a5d07249c4bc066a8ecf87e /bskyweb | |
parent | edb37e2c06ba9c745e4a820a0f5fa334e48bac05 (diff) | |
download | voidsky-f05c2f06d665cb3a9989154fbc82a2b0ea60669a.tar.zst |
Fix missing post text in noscript post view (#981)
Diffstat (limited to 'bskyweb')
-rw-r--r-- | bskyweb/templates/post.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bskyweb/templates/post.html b/bskyweb/templates/post.html index 05d62a1c8..25a68c971 100644 --- a/bskyweb/templates/post.html +++ b/bskyweb/templates/post.html @@ -43,6 +43,6 @@ <p id="bsky_display_name">{{ postView.Author.DisplayName }}</p> <p id="bsky_handle">{{ postView.Author.Handle }}</p> <p id="bsky_did">{{ postView.Author.Did }}</p> - <p id="bsky_post_text">{{ postView.Record.Text }}</p> + <p id="bsky_post_text">{{ postView.Record.Val.Text }}</p> </div> {%- endblock %} |