File tree Expand file tree Collapse file tree 4 files changed +7
-0
lines changed
src/frontend/apps/impress/src
features/docs/doc-management/components Expand file tree Collapse file tree 4 files changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ and this project adheres to
4545- 🔒(frontend) prevent readers from changing callout emoji #1449
4646- 🐛(frontend) fix overlapping placeholders in multi-column layout #1455
4747- 🐛(backend) filter invitation with case insensitive email
48+ - 🐛(frontend) reduce no access image size from 450 to 300 #1463
4849
4950## [ 3.7.0] - 2025-09-12
5051
Original file line number Diff line number Diff line change @@ -59,6 +59,8 @@ export const DocPage403 = ({ id }: DocProps) => {
5959 className = "c__image-system-filter"
6060 src = { img403 }
6161 alt = { t ( 'Image 403' ) }
62+ width = { 300 }
63+ height = { 300 }
6264 style = { {
6365 maxWidth : '100%' ,
6466 height : 'auto' ,
Original file line number Diff line number Diff line change @@ -46,6 +46,8 @@ const Page: NextPageWithLayout = () => {
4646 className = "c__image-system-filter"
4747 src = { img401 }
4848 alt = ""
49+ width = { 300 }
50+ height = { 300 }
4951 style = { {
5052 maxWidth : '100%' ,
5153 height : 'auto' ,
Original file line number Diff line number Diff line change @@ -42,6 +42,8 @@ const Page: NextPageWithLayout = () => {
4242 className = "c__image-system-filter"
4343 src = { img403 }
4444 alt = ""
45+ width = { 300 }
46+ height = { 300 }
4547 style = { {
4648 maxWidth : '100%' ,
4749 height : 'auto' ,
You can’t perform that action at this time.
0 commit comments