Skip to content

Commit 299895b

Browse files
fix: indexing issue in reset password page, padding for the body in e… (#45)
* fix: indexing issue in reset password page, padding for the body in expansion component * fix: typo
1 parent 20fb234 commit 299895b

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

src/components/ExpansionTile.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export function ExpansionTile({
5959
)}
6060
</div>
6161
</div>
62-
{isExpanded && children}
62+
<div className="pl-6">{isExpanded && children}</div>
6363
</div>
6464
)
6565
}

src/pages/self-hosting/reset-password.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,21 +8,21 @@ Users can reset their password through the terminal of the Plane Application. Yo
88

99
1. Get the container id for `plane-backend`
1010

11-
```jsx
12-
docker ps
13-
```
11+
```jsx
12+
docker ps
13+
```
1414

15-
1. Log in to the container
15+
2. Log in to the container
1616

17-
```jsx
18-
docker exec -it <container_id> /bin/sh
19-
```
17+
```jsx
18+
docker exec -it <container_id> /bin/sh
19+
```
2020

21-
1. Run the reset password command
21+
3. Run the reset password command
2222

23-
```jsx
24-
python manage.py reset_password <email>
25-
```
23+
```jsx
24+
python manage.py reset_password <email>
25+
```
2626

2727
{% callout type="note" %}
2828
The email should be of an already existing user on the Plane application. If the email is not attached to any user the command will throw an error.

src/pages/sign-up-sign-in.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ There may also be cases where a user IRL is running multiple instances, e.g., wh
3737

3838
This screen will help you get set up with an e-mail and a password and get access to {% inline-code textColor="blue" %}God Mode{% /inline-code %} features. [Learn more](/self-hosting/instance-admin)
3939

40-
To prevent misuse of these features, you can’t access these screens without going through our secure set-up first, which will start when when you upgrade to {% inline-code textColor="grey" %}v0.14{% /inline-code %}.
40+
To prevent misuse of these features, you can’t access these screens without going through our secure set-up first, which will start when you upgrade to {% inline-code textColor="grey" %}v0.14{% /inline-code %}.
4141

4242
{% callout type="cloud" %}
4343
Cloud users will get their own set of {% inline-code textColor="blue" %}God Mode{% /inline-code %} in a later update for authorization and billing controls. {% link href="https://ece39166.sibforms.com/serve/MUIFANgaMWIARsq1n0lMNrch19pdY2HJm9FkSXAeq1DrCoXJBmO9Yq6SPgtzu7rL0lQBmCvvz2A2arVl5WaDxYu6YhNW4PKNAis0DMXmpRnwm5633BvXqIYILqZuyqYiGS7_QjJ0Ozh4R2uctd8RwiiTLSHWpnV2njQt6DPV5cVr8FH3K-TouNAlBScOJxbCpjj8fYo2ULsEJeAL" target="_blank" %}Subscribe to be notified{% /link %}.

0 commit comments

Comments
 (0)