diff --git a/src/app/(dynamic-pages)/(authenticated-pages)/(application-pages)/project/[projectSlug]/(specific-project-pages)/AllRunsTable.tsx b/src/app/(dynamic-pages)/(authenticated-pages)/(application-pages)/project/[projectSlug]/(specific-project-pages)/AllRunsTable.tsx index 4eb04591..d446ced5 100644 --- a/src/app/(dynamic-pages)/(authenticated-pages)/(application-pages)/project/[projectSlug]/(specific-project-pages)/AllRunsTable.tsx +++ b/src/app/(dynamic-pages)/(authenticated-pages)/(application-pages)/project/[projectSlug]/(specific-project-pages)/AllRunsTable.tsx @@ -79,9 +79,9 @@ export const AllRunsTable = ({ runs, projectSlug }: { runs: Tables<'digger_runs' )) ) : ( - + -

No runs available

-

- Runs will appear here once they are initiated. +

+ Runs will appear here once they are initiated. Note you need to setup your repo with digger_workflow.yml to be able to trigger runs, for more information refer to the which includes example workflow file Docs quickstart

diff --git a/src/app/(dynamic-pages)/(authenticated-pages)/(application-pages)/project/[projectSlug]/(specific-project-pages)/TFVarsDetails.tsx b/src/app/(dynamic-pages)/(authenticated-pages)/(application-pages)/project/[projectSlug]/(specific-project-pages)/TFVarsDetails.tsx index 809d430a..fd5506f4 100644 --- a/src/app/(dynamic-pages)/(authenticated-pages)/(application-pages)/project/[projectSlug]/(specific-project-pages)/TFVarsDetails.tsx +++ b/src/app/(dynamic-pages)/(authenticated-pages)/(application-pages)/project/[projectSlug]/(specific-project-pages)/TFVarsDetails.tsx @@ -1,7 +1,7 @@ 'use client' import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert"; -import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; +import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "@/components/ui/card"; import { EnvVar } from "@/types/userTypes"; import { motion } from "framer-motion"; import TFVarTable from "./TFVarTable"; @@ -39,12 +39,14 @@ export default function TFVarsDetails({ tfvarsdata, onUpdate, onDelete, onBulkUp onBulkUpdate={onBulkUpdate} /> - - PROTIP - - If you want to use these env variables directly in your terraform variables prefix them with TF_VAR_xxx - - + + + PROTIP + + If you want to use these env variables directly in your terraform variables prefix them with TF_VAR_xxx + + + );