[autofix.ci] apply automated fixes

This commit is contained in:
autofix-ci[bot]
2025-10-25 05:55:09 +00:00
committed by GitHub
parent ba4626c7da
commit 88a8c060db
4 changed files with 19 additions and 6 deletions

View File

@@ -111,7 +111,7 @@ export const ShowDeployment = ({
const handleCopy = async () => {
const logContent = filteredLogs
.map(({ timestamp, message }: LogLine) =>
`${timestamp?.toISOString() || ""} ${message}`.trim()
`${timestamp?.toISOString() || ""} ${message}`.trim(),
)
.join("\n");

View File

@@ -1,4 +1,11 @@
import { Download as DownloadIcon, Check, Copy, Loader2, Pause, Play } from "lucide-react";
import {
Download as DownloadIcon,
Check,
Copy,
Loader2,
Pause,
Play,
} from "lucide-react";
import React, { useEffect, useRef } from "react";
import { AlertBlock } from "@/components/shared/alert-block";
import { Button } from "@/components/ui/button";
@@ -241,10 +248,16 @@ export const DockerLogsId: React.FC<Props> = ({
const handleCopy = async () => {
const logContent = filteredLogs
.map(
({ timestamp, message }: { timestamp: Date | null; message: string }) =>
({
timestamp,
message,
}: {
timestamp: Date | null;
message: string;
}) =>
showTimestamp
? `${timestamp?.toISOString() || "No timestamp"} ${message}`
: message
: message,
)
.join("\n");

View File

@@ -281,7 +281,7 @@ export const ImpersonationBar = () => {
<div className="flex items-center gap-4 flex-1 flex-wrap">
<Avatar className="h-10 w-10">
<AvatarImage
className="object-cover"
className="object-cover"
src={data?.user?.image || ""}
alt={data?.user?.name || ""}
/>

View File

@@ -44,7 +44,7 @@ export const UserNav = () => {
>
<Avatar className="h-8 w-8 rounded-lg">
<AvatarImage
className="object-cover"
className="object-cover"
src={data?.user?.image || ""}
alt={data?.user?.image || ""}
/>