File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ export function getSecretDetailColumn(
2929 accessorKey : "key" ,
3030 cell : ( { row } ) => {
3131 const code = `from zenml.client import Client
32- secret = Client().get_secret(${ name } )
32+ secret = Client().get_secret(" ${ name } " )
3333
3434# 'secret.secret_values' will contain a dictionary with all key-value pairs within your secret.
3535secret.secret_values["${ row . original . key } "]
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export const secretsColumns: ColumnDef<SecretNamespace>[] = [
1818 accessorFn : ( row ) => row . name ,
1919 cell : ( { getValue, row } ) => {
2020 const code = `from zenml.client import Client
21- secret = Client().get_secret(${ row . original . name } )
21+ secret = Client().get_secret(" ${ row . original . name } " )
2222` ;
2323
2424 return (
You can’t perform that action at this time.
0 commit comments