Skip to content

Commit 70a5013

Browse files
committed
Fix for p inside p
1 parent 07dd634 commit 70a5013

File tree

1 file changed

+4
-8
lines changed
  • apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs._index

1 file changed

+4
-8
lines changed

apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.runs._index/route.tsx

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -343,10 +343,8 @@ function CancelRuns({ onOpen }: { onOpen: (open: boolean) => void }) {
343343
<DialogContent key="replay">
344344
<DialogHeader>Cancel {selectedItems.size} runs?</DialogHeader>
345345
<DialogDescription className="pt-2">
346-
<Paragraph>
347-
Canceling these runs will stop them from running. Only runs that are not already
348-
finished will be canceled, the others will remain in their existing state.
349-
</Paragraph>
346+
Canceling these runs will stop them from running. Only runs that are not already finished
347+
will be canceled, the others will remain in their existing state.
350348
</DialogDescription>
351349
<DialogFooter>
352350
<Form action={formAction} method="post" reloadDocument>
@@ -402,10 +400,8 @@ function ReplayRuns({ onOpen }: { onOpen: (open: boolean) => void }) {
402400
<DialogContent key="replay">
403401
<DialogHeader>Replay runs?</DialogHeader>
404402
<DialogDescription className="pt-2">
405-
<Paragraph>
406-
Replaying these runs will create a new run for each with the same payload and
407-
environment as the original. It will use the latest version of the code for each task.
408-
</Paragraph>
403+
Replaying these runs will create a new run for each with the same payload and environment
404+
as the original. It will use the latest version of the code for each task.
409405
</DialogDescription>
410406
<DialogFooter>
411407
<Form action={formAction} method="post" reloadDocument>

0 commit comments

Comments
 (0)