diff --git a/docs/nx-cloud/reference/server-api.md b/docs/nx-cloud/reference/server-api.md index 05ea439ae7..26366a132f 100644 --- a/docs/nx-cloud/reference/server-api.md +++ b/docs/nx-cloud/reference/server-api.md @@ -16,6 +16,6 @@ Per the spec, you use this token in the `Authentication` header. ## Swagger -You may use swagger to preview the spec and make requests. We do not serve our own swagger instance publicly, but you may use [the example swagger ui](https://petstore.swagger.io/), and paste in the url to the Nx API definitions (https://cloud.nx.app/nx-cloud/api/definition.json). +You may use swagger to preview the spec and make requests. We do not serve our own swagger instance publicly, but you may use [the example swagger ui](https://petstore.swagger.io/?url=https://cloud.nx.app/nx-cloud/api/definition.json), and paste in the url to the Nx API definitions (https://cloud.nx.app/nx-cloud/api/definition.json). ![Access tokens](/nx-cloud/reference/swagger-preview.png) diff --git a/nx-dev/nx-dev/pages/changelog.tsx b/nx-dev/nx-dev/pages/changelog.tsx index 4a3930be57..7dbf90ee93 100644 --- a/nx-dev/nx-dev/pages/changelog.tsx +++ b/nx-dev/nx-dev/pages/changelog.tsx @@ -223,58 +223,56 @@ export default function Changelog(props: ChangeLogProps): JSX.Element { >
- <> -
-
+
+
+
+
+

+ + +

+

+ +

+
+ {/* CONTAINER */} +
+
+ {changelog.content}
-
-

- - -

-

- -

-
- {/* CONTAINER */} -
-
- {changelog.content} + {changelog.patches.length > 0 && ( +
+ {changelog.patches.map((version) => ( + + {version} + + ))}
- {changelog.patches.length > 0 && ( -
- {changelog.patches.map((version) => ( - - {version} - - ))} -
- )} -
- + )} +
))}