Skip to content

Commit

Permalink
Merge pull request #194 from makeplane/preview
Browse files Browse the repository at this point in the history
Some minor fixes
  • Loading branch information
srinivaspendem authored Dec 19, 2024
2 parents b2a9637 + 9beb7bf commit 2bb8b73
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 3 deletions.
5 changes: 5 additions & 0 deletions docs/core-concepts/issues/issue-types.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<div style={{ position: "relative", paddingBottom: "calc(56.67989417989418% + 41px)", height: "0", width: "100%" }}>
<iframe src="https://demo.arcade.software/V1jNWxXip4waqo9CgkO3?embed&embed_mobile=tab&embed_desktop=inline&show_copy_link=true" frameborder="0" loading="lazy" webkitallowfullscreen mozallowfullscreen allowfullscreen style={{ position: "absolute", top: "0", left: "0", width: "100%", height: "100%", colorScheme: "light"}} title="Set up your workspace">
</iframe>
</div>

## Create issue types

:::warning
Expand Down
5 changes: 5 additions & 0 deletions docs/core-concepts/issues/time-tracking.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<div style={{ position: "relative", paddingBottom: "calc(56.67989417989418% + 41px)", height: "0", width: "100%" }}>
<iframe src="https://demo.arcade.software/avUgm2QhW68h6umzNFNT?embed&embed_mobile=tab&embed_desktop=inline&show_copy_link=true" frameborder="0" loading="lazy" webkitallowfullscreen mozallowfullscreen allowfullscreen style={{ position: "absolute", top: "0", left: "0", width: "100%", height: "100%", colorScheme: "light"}} title="Set up your workspace">
</iframe>
</div>

## Enable Time Tracking
To enable the Time Tracking feature on your project, follow the steps below:

Expand Down
23 changes: 23 additions & 0 deletions docs/core-concepts/pages/overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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==

[email protected]:
version "0.6.3"
Expand Down

0 comments on commit 2bb8b73

Please sign in to comment.