diff --git a/src/app/components/columns.tsx b/src/app/components/columns.tsx index fdc9eb765..d153fad2d 100644 --- a/src/app/components/columns.tsx +++ b/src/app/components/columns.tsx @@ -47,18 +47,19 @@ export function getComponentList(): ColumnDef[] { const id = row.original.id; const name = row.original.name; return ( -
+
Flavor Icon
- diff --git a/src/app/pipelines/[pipelineId]/runs/columns.tsx b/src/app/pipelines/[pipelineId]/runs/columns.tsx index b1ed4671a..8a1f74bcd 100644 --- a/src/app/pipelines/[pipelineId]/runs/columns.tsx +++ b/src/app/pipelines/[pipelineId]/runs/columns.tsx @@ -65,12 +65,15 @@ export function getPipelineDetailColumns(): ColumnDef[] { }>(); return ( -
+
- -

{name}

+ +

{name}

diff --git a/src/app/pipelines/_components/columns.tsx b/src/app/pipelines/_components/columns.tsx index 5d1b563ef..1aaa9adb4 100644 --- a/src/app/pipelines/_components/columns.tsx +++ b/src/app/pipelines/_components/columns.tsx @@ -54,17 +54,17 @@ export function getPipelineColumns(): ColumnDef[] { header: "Pipeline", cell: ({ row }) => { return ( -
+
- + {row.original.name} diff --git a/src/app/runs/columns.tsx b/src/app/runs/columns.tsx index 33127f794..20738e24e 100644 --- a/src/app/runs/columns.tsx +++ b/src/app/runs/columns.tsx @@ -62,12 +62,17 @@ export const runsColumns: ColumnDef[] = [ status: ExecutionStatus; }>(); return ( -
+
- - {name} + + + {name} + diff --git a/src/app/settings/connectors/columns.tsx b/src/app/settings/connectors/columns.tsx index 3a424ecb2..488a7cb60 100644 --- a/src/app/settings/connectors/columns.tsx +++ b/src/app/settings/connectors/columns.tsx @@ -52,7 +52,7 @@ export function useServiceConnectorListColumns(): ColumnDef[] const connectorType = row.original.body?.connector_type; return ( -
+
{!!connectorType && typeof connectorType !== "string" && ( )} @@ -60,9 +60,9 @@ export function useServiceConnectorListColumns(): ColumnDef[]
- {name} + {name}
diff --git a/src/app/settings/secrets/[id]/columns.tsx b/src/app/settings/secrets/[id]/columns.tsx index f0020b229..2d2ff21a3 100644 --- a/src/app/settings/secrets/[id]/columns.tsx +++ b/src/app/settings/secrets/[id]/columns.tsx @@ -11,7 +11,7 @@ const ValueCell: React.FC<{ value: unknown }> = ({ value }) => { const dots = "•".repeat(valueStr.length); return ( -
+
setIsVisible(!isVisible)} className="h-4 w-4 flex-shrink-0" /> {isVisible ? valueStr : dots}
@@ -30,19 +30,21 @@ export function getSecretDetailColumn( cell: ({ row }) => { const code = `from zenml.client import Client secret = Client().get_secret("${name}") - + # 'secret.secret_values' will contain a dictionary with all key-value pairs within your secret. secret.secret_values["${row.original.key}"] `; return ( -
- +
+
- - {row.original.key} - +
+ + {row.original.key} + +
diff --git a/src/app/settings/secrets/columns.tsx b/src/app/settings/secrets/columns.tsx index 09192ecff..c510af18d 100644 --- a/src/app/settings/secrets/columns.tsx +++ b/src/app/settings/secrets/columns.tsx @@ -19,16 +19,16 @@ export const secretsColumns: ColumnDef[] = [ const code = getSecretSnippet(row.original.name); return ( -
- +
+
- {row.original.name} + {row.original.name}
diff --git a/src/app/settings/service-accounts/[service-account-id]/columns.tsx b/src/app/settings/service-accounts/[service-account-id]/columns.tsx index 0a9eb4787..dc179bf80 100644 --- a/src/app/settings/service-accounts/[service-account-id]/columns.tsx +++ b/src/app/settings/service-accounts/[service-account-id]/columns.tsx @@ -43,11 +43,11 @@ export function getServiceAccountDetailColumn(): ColumnDef[] { }), cell: ({ row }) => { return ( -
- +
+
-
-
+
+
{row.original.name}
diff --git a/src/app/settings/service-accounts/columns.tsx b/src/app/settings/service-accounts/columns.tsx index 84f6bea89..6289cde96 100644 --- a/src/app/settings/service-accounts/columns.tsx +++ b/src/app/settings/service-accounts/columns.tsx @@ -41,18 +41,18 @@ export function getServiceAccountColumns(): ColumnDef[] { accessorFn: (row) => row.name, cell: ({ row }) => { return ( -
+
-
+
{row.original.name} diff --git a/src/app/stacks/columns.tsx b/src/app/stacks/columns.tsx index db2d0dd28..e2ba0c72d 100644 --- a/src/app/stacks/columns.tsx +++ b/src/app/stacks/columns.tsx @@ -17,16 +17,18 @@ export function useStackColumns(): ColumnDef[] { cell: ({ getValue }) => { const { name, id } = getValue<{ name: string; id: string }>(); return ( -
- +
+ {name[0]}
-

{name}

+

+ {name} +

- +

{id.split("-")[0]}

diff --git a/src/components/deployments/list/column-definitions.tsx b/src/components/deployments/list/column-definitions.tsx index ebeb34a0a..9973aa951 100644 --- a/src/components/deployments/list/column-definitions.tsx +++ b/src/components/deployments/list/column-definitions.tsx @@ -21,15 +21,15 @@ export function createDeploymentNameColumn(): ColumnDef { const name = row.original.name; const id = row.original.id; return ( -
- +
+
- + {name ?? "Unnamed"} diff --git a/src/components/pipeline-snapshots/list/column-definitions.tsx b/src/components/pipeline-snapshots/list/column-definitions.tsx index b24e931dd..9439b893f 100644 --- a/src/components/pipeline-snapshots/list/column-definitions.tsx +++ b/src/components/pipeline-snapshots/list/column-definitions.tsx @@ -53,13 +53,13 @@ export function createSnapshotNameColumn(): ColumnDef { const name = row.original.name; const id = row.original.id; return ( -
+
{name ?? "Unnamed"} diff --git a/src/components/stack-components/component-sheet/runs-tab/columns.tsx b/src/components/stack-components/component-sheet/runs-tab/columns.tsx index 09ee3339f..9c1ea4900 100644 --- a/src/components/stack-components/component-sheet/runs-tab/columns.tsx +++ b/src/components/stack-components/component-sheet/runs-tab/columns.tsx @@ -29,12 +29,17 @@ export const runsColumns: ColumnDef[] = [ status: ExecutionStatus; }>(); return ( -
- +
+
- - {name} + + + {name} + diff --git a/src/components/stack-components/component-sheet/stacks-tab/columns.tsx b/src/components/stack-components/component-sheet/stacks-tab/columns.tsx index 0eb4fd73d..f7fec74d0 100644 --- a/src/components/stack-components/component-sheet/stacks-tab/columns.tsx +++ b/src/components/stack-components/component-sheet/stacks-tab/columns.tsx @@ -15,13 +15,13 @@ export function getStackColumnsPanel(): ColumnDef[] { cell: ({ row }) => { const { name, id } = row.original; return ( -
- +
+ {name[0]}
-
-

{name}

+
+

{name}

{id.split("-")[0]}

diff --git a/src/components/stacks/Sheet/index.tsx b/src/components/stacks/Sheet/index.tsx index d682b8e34..6e25982b9 100644 --- a/src/components/stacks/Sheet/index.tsx +++ b/src/components/stacks/Sheet/index.tsx @@ -62,14 +62,16 @@ function StackHeadline({ stackId }: Props) { ); return ( -
+
- + {stack.data.name[0]}
-
-

{stack.data.id}

+
+

+ {stack.data.id} +