diff --git a/docs/core-concepts/issues/issue-types.mdx b/docs/core-concepts/issues/issue-types.mdx index 67dfcb3..23e7730 100644 --- a/docs/core-concepts/issues/issue-types.mdx +++ b/docs/core-concepts/issues/issue-types.mdx @@ -20,6 +20,11 @@ For example, your Marketing team may need an issue type called `Content` with th Issue Types make these and infinite other use cases possible. +
+ +
+ ## Create issue types :::warning diff --git a/docs/core-concepts/issues/time-tracking.mdx b/docs/core-concepts/issues/time-tracking.mdx index 00a6088..ac31dc0 100644 --- a/docs/core-concepts/issues/time-tracking.mdx +++ b/docs/core-concepts/issues/time-tracking.mdx @@ -23,6 +23,11 @@ Log time per issue, record time by members and guests per issue, and download co Project members can easily log the time they spend working on specific issues directly within the issue details page. Each time entry can include details such as the amount of time spent and optional notes to provide context. Plane also offers comprehensive reports that aggregate time-tracking data across different projects helping managers analyze productivity and ensure successful project delivery. +
+ +
+ ## Enable Time Tracking To enable the Time Tracking feature on your project, follow the steps below: diff --git a/docs/core-concepts/pages/overview.mdx b/docs/core-concepts/pages/overview.mdx index 5b6900c..5c805c5 100644 --- a/docs/core-concepts/pages/overview.mdx +++ b/docs/core-concepts/pages/overview.mdx @@ -122,3 +122,26 @@ When you export to PDF, your documents keep their formatting, making them easy t With Plane, you can publish Pages to the web, making them accessible to anyone with the link—no login required. This feature is perfect for sharing project updates, documentation, or any other information with external stakeholders. Published pages allow viewers to engage directly by leaving comments, providing an open channel for feedback without needing access to your workspace. To publish a page, click the **Publish** button at the top right of your screen. You’ll receive a unique link to share the page. + +## Troubleshooting + +### Page content not visible + +**Issue** +Page content is not visible to Members, even when the page is set to public. While the page title appears, the content does not, and only the page creator can view it. In some cases, content is visible on certain pages but not others, making the issue inconsistent and unpredictable. + +**Cause** +When using an external reverse proxy, the necessary HTTP upgrade headers must be added to support WebSocket communication. The default configuration does not handle WebSocket connections correctly. + +**Solution** +To resolve this issue, enable WebSocket support by adding specific headers in your external proxy configuration file. + +For example, if you are using NGINX, include the following settings: + +```bash +proxy_http_version 1.1; +proxy_set_header Upgrade $http_upgrade; +proxy_set_header Connection "upgrade"; +``` + +For more details on configuring an external reverse proxy for Plane and accessing different templates, refer to the [External reverse proxy](https://developers.plane.so/self-hosting/govern/reverse-proxy) guide. \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index 6d5cbf9..543dfff 100644 --- a/yarn.lock +++ b/yarn.lock @@ -5995,9 +5995,9 @@ multicast-dns@^7.2.5: thunky "^1.0.2" nanoid@^3.3.7: - version "3.3.7" - resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" - integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== + version "3.3.8" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.8.tgz#b1be3030bee36aaff18bacb375e5cce521684baf" + integrity sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w== negotiator@0.6.3: version "0.6.3"