Skip to content

Commit

Permalink
minor change to tfvars screen
Browse files Browse the repository at this point in the history
  • Loading branch information
psiddharthdesign committed Jul 29, 2024
1 parent 05184ec commit 301b554
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ export default function TFVarTable({ envVars, onUpdate, onDelete, onBulkUpdate }
<Separator className="my-4" />
<div className="mt-8">
<h3 className="text-lg font-semibold">Bulk Edit Environment Variables</h3>
<p className="text-sm text-gray-600 mb-4">
<p className="text-sm text-muted-foreground mb-4">
Edit all environment variables at once in JSON format. Be careful with this operation.
</p>
<div className="flex gap-2">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert";
import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "@/components/ui/card";
import { Separator } from "@/components/ui/separator";
import { EnvVar } from "@/types/userTypes";
import { motion } from "framer-motion";
import TFVarTable from "./TFVarTable";
Expand Down Expand Up @@ -39,7 +40,8 @@ export default function TFVarsDetails({ tfvarsdata, onUpdate, onDelete, onBulkUp
onBulkUpdate={onBulkUpdate}
/>
</CardContent>
<CardFooter>
<Separator />
<CardFooter className="mt-6">
<Alert variant='default' className="bg-muted/50" >
<AlertTitle>PROTIP</AlertTitle>
<AlertDescription>
Expand Down

0 comments on commit 301b554

Please sign in to comment.