added quote reaction and added quote reaction to 2026/0402 blog post

This commit is contained in:
2026-04-13 16:24:53 +02:00
parent 019e94e779
commit df47346a5d
3 changed files with 11 additions and 9 deletions

View File

@@ -1,5 +1,5 @@
<script lang="ts">
// currently available reactions: pointing, joy
// currently available reactions: pointing, joy, quote
let {
reaction,
text,
@@ -11,9 +11,13 @@
function getReactionAlt(r: string): string {
switch (r) {
case "joy":
return ""
return "";
case "quote":
return "";
case "pointing":
return "";
default:
return "placeholder reaction"
return "reaction image missing";
}
}
</script>