Skip to content

Commit

Permalink
fix: scrollbars (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxFrank13 authored Nov 22, 2023
2 parents c3dcf8e + 9264316 commit 7353298
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugins/PluginSlot.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const PluginSlot = forwardRef(({
keepDefault: true,
plugins: [
{
url: 'https://profile-velvetslice.sandbox.edx.org/u/verified/plugin',
url: `https://profile-velvetslice.sandbox.edx.org/u/${authenticatedUser.username}/plugin`,
type: IFRAME_PLUGIN,
},
{
Expand Down
5 changes: 5 additions & 0 deletions src/containers/CourseList/__snapshots__/index.test.jsx.snap
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ exports[`CourseList collapsed with multiple courses and pages snapshot 1`] = `
className="course-list-title"
>
My Courses
POC branch
</h2>
<div
className="course-filter-controls-container"
Expand Down Expand Up @@ -60,6 +61,7 @@ exports[`CourseList no courses snapshot 1`] = `
className="course-list-title"
>
My Courses
POC branch
</h2>
<div
className="course-filter-controls-container"
Expand All @@ -84,6 +86,7 @@ exports[`CourseList no filters snapshot 1`] = `
className="course-list-title"
>
My Courses
POC branch
</h2>
<div
className="course-filter-controls-container"
Expand All @@ -108,6 +111,7 @@ exports[`CourseList with filters snapshot 1`] = `
className="course-list-title"
>
My Courses
POC branch
</h2>
<div
className="course-filter-controls-container"
Expand Down Expand Up @@ -141,6 +145,7 @@ exports[`CourseList with multiple courses and pages snapshot 1`] = `
className="course-list-title"
>
My Courses
POC branch
</h2>
<div
className="course-filter-controls-container"
Expand Down
2 changes: 1 addition & 1 deletion src/containers/Dashboard/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const Dashboard = () => {

return (
<div id="dashboard-container" className="d-flex flex-column p-2 pt-0">
<h1 className="sr-only">{pageTitle} POC branch</h1>
<h1 className="sr-only">{pageTitle}</h1>
{!initIsPending && (
<>
{hasAvailableDashboards && <EnterpriseDashboardModal />}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ exports[`WidgetSidebar snapshots default 1`] = `
}
style={
Object {
"height": 400,
"height": 800,
"width": "100%",
}
}
>
Expand Down

0 comments on commit 7353298

Please sign in to comment.