|
|
@@ -1049,12 +1049,12 @@ function UserMessage(props: {
|
|
|
<Show
|
|
|
when={queued()}
|
|
|
fallback={
|
|
|
- <span style={{ fg: theme.textMuted }}>
|
|
|
- {ctx.usernameVisible() ? " · " : " "}
|
|
|
- {ctx.showTimestamps()
|
|
|
- ? Locale.todayTimeOrDateTime(props.message.time.created)
|
|
|
- : Locale.time(props.message.time.created)}
|
|
|
- </span>
|
|
|
+ <Show when={ctx.showTimestamps()}>
|
|
|
+ <span style={{ fg: theme.textMuted }}>
|
|
|
+ {ctx.usernameVisible() ? " · " : " "}
|
|
|
+ {Locale.todayTimeOrDateTime(props.message.time.created)}
|
|
|
+ </span>
|
|
|
+ </Show>
|
|
|
}
|
|
|
>
|
|
|
<span style={{ bg: theme.accent, fg: theme.backgroundPanel, bold: true }}> QUEUED </span>
|