v3: fixed docker image, updated locales
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 39s
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 39s
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
import { useRef, useState } from "react";
|
||||
import { t } from "@lingui/core/macro";
|
||||
import { API_URL } from "../config/api.ts";
|
||||
import { UserListPopover } from "./UserListPopover.tsx";
|
||||
|
||||
@@ -26,8 +27,8 @@ export function LikeButton(
|
||||
}`}
|
||||
onClick={() => liked ? onUnlike(commentId) : onLike(commentId)}
|
||||
disabled={disabled}
|
||||
aria-label={liked ? "Remove like" : "Like"}
|
||||
title={disabled ? "Log in to like" : undefined}
|
||||
aria-label={liked ? t`Remove like` : t`Like`}
|
||||
title={disabled ? t`Log in to like` : undefined}
|
||||
>
|
||||
♥{" "}
|
||||
{count > 0
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import { useRef, useState } from "react";
|
||||
import { t } from "@lingui/core/macro";
|
||||
import { API_URL } from "../config/api.ts";
|
||||
import { UserListPopover } from "./UserListPopover.tsx";
|
||||
|
||||
@@ -24,8 +25,8 @@ export function VoteButton(
|
||||
className={`vote-btn${voted ? " vote-btn--active" : ""}`}
|
||||
onClick={() => voted ? onRemove(dumpId) : onCast(dumpId)}
|
||||
disabled={disabled}
|
||||
aria-label={voted ? "Remove vote" : "Upvote"}
|
||||
title={disabled ? "Log in to vote" : undefined}
|
||||
aria-label={voted ? t`Remove vote` : t`Upvote`}
|
||||
title={disabled ? t`Log in to vote` : undefined}
|
||||
>
|
||||
▲{" "}
|
||||
{count > 0
|
||||
|
||||
Reference in New Issue
Block a user