Skip to content

Commit 0331d25

Browse files
committed
fixes issue #1240
1 parent fe2a619 commit 0331d25

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/getting_started/dashboard_tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,8 +221,8 @@ def show_user(user: User):
221221
rx.table.cell(user.name),
222222
rx.table.cell(user.email),
223223
rx.table.cell(user.gender),
224-
style=\{"_hover":
225-
\{"bg": rx.color("gray", 3)}
224+
style={"_hover":
225+
{"bg": rx.color("gray", 3)}
226226
},
227227
align="center",
228228
)

docs/getting_started/project-structure.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ The `assets` directory is where you can store any static assets you want to be p
4545
For example, if you save an image to `assets/image.png` you can display it from your app like this:
4646

4747
```python
48-
rx.image(src="image.png")
48+
rx.image(src="/image.png")
4949
```
50-
50+
j
5151
## Main Project
5252

5353
Initializing your project creates a directory with the same name as your app. This is where you will write your app's logic.

0 commit comments

Comments
 (0)