diff --git a/docs/index.md b/docs/index.md index afc8c391fc..c6aac3c7f4 100644 --- a/docs/index.md +++ b/docs/index.md @@ -19,7 +19,7 @@ The documentation for Podman is located ## Installing Podman For installing or building Podman, please see the -[installation instructions](docs/installation). +[installation instructions](./installation). ## Familiarizing yourself with Podman @@ -202,7 +202,7 @@ Checkpointing a container stops the container while writing the state of all processes in the container to disk. With this, a container can later be migrated and restored, running at exactly the same point in time as the checkpoint. For more details, see the -[checkpoint instructions](docs/checkpoint). +[checkpoint instructions](./checkpoint). ## Integration Tests diff --git a/src/components/ui/CustomCard/index.tsx b/src/components/ui/CustomCard/index.tsx index a36b01f04e..cb8b017e15 100644 --- a/src/components/ui/CustomCard/index.tsx +++ b/src/components/ui/CustomCard/index.tsx @@ -11,8 +11,8 @@ type SubcardButtonProps = { type CardInfoButtonProps = { data: SubcardButtonProps[]; - primary: Boolean; - method: Function; + primary: boolean; + method?: (button: SubcardButtonProps) => void; }; function CardHeader(props) { @@ -30,9 +30,9 @@ function CardBody(props) { const { text } = props; return (
+
+