panel-upgrade-and-fixes
All checks were successful
Deploy on push / deploy (push) Successful in 7s

This commit is contained in:
2025-07-18 16:32:35 +03:00
parent 5d766b7601
commit 3826797317
16 changed files with 1071 additions and 1361 deletions

View File

@@ -273,7 +273,10 @@ const ShoutsRoute = (props: ShoutsRouteProps) => {
{(author) => (
<Show when={author}>
{(safeAuthor) => (
<span class={styles['author-badge']} title={formatAuthorTooltip(safeAuthor()!)}>
<span
class={styles['author-badge']}
title={formatAuthorTooltip(safeAuthor()!)}
>
{safeAuthor()?.name || safeAuthor()?.email || `ID:${safeAuthor()?.id}`}
</span>
)}
@@ -392,10 +395,7 @@ const ShoutsRoute = (props: ShoutsRouteProps) => {
}
>
<div style="padding: 1rem;">
<HTMLEditor
value={selectedShoutBody()}
onInput={(value) => setSelectedShoutBody(value)}
/>
<HTMLEditor value={selectedShoutBody()} onInput={(value) => setSelectedShoutBody(value)} />
</div>
</Modal>
@@ -428,10 +428,8 @@ const ShoutsRoute = (props: ShoutsRouteProps) => {
}
>
<div style="padding: 1rem;">
<HTMLEditor
value={selectedMediaBody()}
onInput={(value) => setSelectedMediaBody(value)}
/>gjl
<HTMLEditor value={selectedMediaBody()} onInput={(value) => setSelectedMediaBody(value)} />
gjl
</div>
</Modal>
</div>