Yellow pending status

This commit is contained in:
Tony Giorgio
2024-01-05 00:11:10 -06:00
committed by Paul Miller
parent f5e693a221
commit 33d3a5ca3d
2 changed files with 7 additions and 1 deletions

View File

@@ -183,7 +183,12 @@ export function ActivityItem(props: {
</Switch>
<Switch>
<Match when={props.date && props.date > 2147483647}>
<time class="text-sm text-neutral-500">
<time class="text-sm text-m-yellow">
{i18n.t("common.pending")}
</time>
</Match>
<Match when={timeAgo(props.date) === "Pending"}>
<time class="text-sm text-m-yellow">
{i18n.t("common.pending")}
</time>
</Match>