Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Formik modal #2034

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 24 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -213,4 +213,4 @@
"msw": {
"workerDirectory": "public"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,7 @@ export default function InstallAgentModal({
const [activeTab, setActiveTab] = useState<"cli" | "flux">("cli");

return (
<Modal
title={"Installation Instructions"}
onClose={onClose}
open={isOpen}
bodyClass="flex flex-col w-full flex-1 h-full overflow-y-auto"
>
<Modal title={"Agent Installation"} onClose={onClose} open={isOpen}>
<div className="flex flex-col gap-4 flex-1 p-4 overflow-y-auto">
<h3 className="font-bold text-lg">
Install the Mission Control agent using instructions below
Expand Down
2 changes: 1 addition & 1 deletion src/components/FeatureFlags/FeatureFlagForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default function FeatureFlagForm({
return (
<Modal
title="Add Feature Flag"
size="very-small"
size="small"
onClose={() => {
setIsOpen(false);
}}
Expand Down
Loading
Loading