diff --git a/heicode/VERSION b/heicode/VERSION index f86e0298..acd81d7f 100644 --- a/heicode/VERSION +++ b/heicode/VERSION @@ -1 +1 @@ -1.4.12 +1.4.13 diff --git a/heicode/web/default/src/components/ui/sheet.tsx b/heicode/web/default/src/components/ui/sheet.tsx index 6ad3df12..e60367b9 100644 --- a/heicode/web/default/src/components/ui/sheet.tsx +++ b/heicode/web/default/src/components/ui/sheet.tsx @@ -1,6 +1,7 @@ import * as React from 'react' import * as SheetPrimitive from '@radix-ui/react-dialog' import { XIcon } from 'lucide-react' +import { useTranslation } from 'react-i18next' import { cn } from '@/lib/utils' function Sheet({ ...props }: React.ComponentProps) { @@ -49,6 +50,7 @@ function SheetContent({ }: React.ComponentProps & { side?: 'top' | 'right' | 'bottom' | 'left' }) { + const { t } = useTranslation() return ( @@ -71,7 +73,7 @@ function SheetContent({ {children} - Close + {t('Close')} diff --git a/heicode/web/default/src/features/agnet-console/pages.tsx b/heicode/web/default/src/features/agnet-console/pages.tsx index 309e45fb..72f6624d 100644 --- a/heicode/web/default/src/features/agnet-console/pages.tsx +++ b/heicode/web/default/src/features/agnet-console/pages.tsx @@ -632,7 +632,11 @@ function RunDetailPanel({ dep }: { dep: AgnetDeployment }) {