Compare commits

..

No commits in common. "f4ce206c52a4b9dc49906db9cf87147307d9d26e" and "4c497313c52e7d402f25f93856c4079cbb6fd07d" have entirely different histories.

2 changed files with 3 additions and 6 deletions

View file

@ -80,12 +80,11 @@ const TootBottomSheet: Component = (props) => {
const toot = () => remoteToot() ?? getCache(acctText(), params.id); const toot = () => remoteToot() ?? getCache(acctText(), params.id);
createEffect((lastTootId?: string) => { createEffect(() => {
const tootId = toot()?.id; const tootId = toot()?.id;
if (!tootId || lastTootId === tootId) return tootId; if (!tootId) return;
const elementId = `toot-${tootId}`; const elementId = `toot-${tootId}`;
document.getElementById(elementId)?.scrollIntoView({ behavior: "smooth" }); document.getElementById(elementId)?.scrollIntoView({ behavior: "smooth" });
return tootId;
}); });
const [tootContext] = createResource( const [tootContext] = createResource(
@ -110,7 +109,7 @@ const TootBottomSheet: Component = (props) => {
const name = resolveCustomEmoji(t.account.displayName, t.account.emojis); const name = resolveCustomEmoji(t.account.displayName, t.account.emojis);
return `${name}'s toot`; return `${name}'s toot`;
} }
return "Someone's toot"; return "A toot";
}; };
const actSession = () => { const actSession = () => {

View file

@ -193,8 +193,6 @@
gap: 8px; gap: 8px;
align-items: center; align-items: center;
margin-bottom: 8px; margin-bottom: 8px;
flex-flow: row wrap;
justify-content: flex-end;
>.compactAuthorUsername { >.compactAuthorUsername {
color: var(--tutu-color-secondary-text-on-surface); color: var(--tutu-color-secondary-text-on-surface);