Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ import {
GitBranchIcon,
ImportIcon,
KeyIcon,
RefreshCcwIcon
RefreshCcwIcon,
RefreshCwIcon
} from "lucide-react";
import { twMerge } from "tailwind-merge";

Expand Down Expand Up @@ -227,7 +228,7 @@ export const SecretTableRow = ({
"bg-container transition-colors duration-75 group-hover:bg-container-hover",
!isSingleEnvView && isFormExpanded && "border-b-0 bg-container-hover",
isSingleEnvView && singleEnvShowOverride && "border-b-border/50",
isSingleEnvView && "pt-3 align-top",
isSingleEnvView && "relative pt-3 align-top",
pendingActionBorderClass(singleEnvPendingAction)
)}
>
Expand Down Expand Up @@ -256,13 +257,24 @@ export const SecretTableRow = ({
)}
/>
) : (
<KeyIcon
className={twMerge(
"block text-secret",
!isSelectionDisabled && "group-hover:!hidden",
isSelected && "!hidden"
<>
<KeyIcon
className={twMerge(
"block text-secret",
!isSelectionDisabled && "group-hover:!hidden",
isSelected && "!hidden"
)}
/>
{singleEnvSecret?.isRotatedSecret && isSingleEnvView && (
<RefreshCwIcon
className={twMerge(
"absolute right-2 bottom-2 !size-2.5 text-secret-rotation",
!isSelectionDisabled && "group-hover:!hidden",
isSelected && "!hidden"
)}
/>
)}
/>
</>
)}
Comment thread
scott-ray-wilson marked this conversation as resolved.
</UnstableTableCell>
{isSingleEnvView ? (
Expand Down
Loading