Skip to content

Commit 4ba3e1f

Browse files
Fix to quick start scrolling (opendatahub-io#85)
1 parent 2600b09 commit 4ba3e1f

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.env.production

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
APP_ENV=production
2+
FASTIFY_LOG_LEVEL=warn

frontend/src/app/App.scss

+6-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,12 @@ html, body, #root {
6666
}
6767
}
6868
}
69-
69+
.pf-c-page__main {
70+
height: 100%;
71+
}
72+
.pf-c-drawer__content {
73+
overflow-y: auto;
74+
}
7075
.pf-c-page__main-section {
7176
.pf-l-gallery {
7277
--pf-l-gallery--GridTemplateColumns--max-on-xl: 330px;

frontend/src/utilities/useWatchDashboardConfig.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ export const useWatchDashboardConfig = (): {
2525
const watchDashboardConfig = () => {
2626
fetchDashboardConfig()
2727
.then((config) => {
28-
console.dir(config);
2928
if (cancelled) {
3029
return;
3130
}

0 commit comments

Comments
 (0)