diff --git a/src/features/dashboard/templates/table-cells.tsx b/src/features/dashboard/templates/table-cells.tsx index 88908f0e0..63004f631 100644 --- a/src/features/dashboard/templates/table-cells.tsx +++ b/src/features/dashboard/templates/table-cells.tsx @@ -7,6 +7,7 @@ import { useToast, } from '@/lib/hooks/use-toast' import { cn } from '@/lib/utils' +import { isVersionCompatible } from '@/lib/utils/version' import { deleteTemplateAction, updateTemplateAction, @@ -284,3 +285,36 @@ export function VisibilityCell({ ) } + +const INVALID_ENVD_VERSION = '0.0.1' +const SDK_V2_MINIMAL_ENVD_VERSION = '0.2.0' + +export function EnvdVersionCell({ + getValue, +}: CellContext