Skip to content
This repository has been archived by the owner on Jan 15, 2025. It is now read-only.

Commit

Permalink
notranslate check
Browse files Browse the repository at this point in the history
  • Loading branch information
feruzm committed Apr 6, 2024
1 parent 7ca8e39 commit cfca364
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/common/components/entry-vote-btn/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,11 @@ export class VoteDialog extends Component<VoteDialogProps, VoteDialogState> {
<>
{mode === "up" && (
<>
<div className={`voting-controls voting-controls-up ${days > 7.0 ? "disable" : ""}`}>
<div
className={`notranslate voting-controls voting-controls-up ${
days > 7.0 ? "disable" : ""
}`}
>
<Button
noPadding={true}
className="w-8"
Expand Down Expand Up @@ -359,7 +363,11 @@ export class VoteDialog extends Component<VoteDialogProps, VoteDialogState> {

{mode === "down" && (
<>
<div className={`voting-controls voting-controls-down ${days > 7.0 ? "disable" : ""}`}>
<div
className={`notranslate voting-controls voting-controls-down ${
days > 7.0 ? "disable" : ""
}`}
>
<Button
noPadding={true}
className="w-8"
Expand Down

0 comments on commit cfca364

Please sign in to comment.