Skip to content

Commit bb7dac1

Browse files
hashseedDevtools-frontend LUCI CQ
authored andcommitted
Fix overflow behavior for Interest Groups
This has been fixed here crrev.com/c/3436688 but through some refactorings the CSS no longer applies to the correct widget. Fixed: 402806164 Change-Id: I181a8eff68532f024a1eb99f40b48144a9a10c0e Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6396059 Auto-Submit: Yang Guo <[email protected]> Commit-Queue: Yang Guo <[email protected]> Reviewed-by: Kim-Anh Tran <[email protected]> Commit-Queue: Kim-Anh Tran <[email protected]>
1 parent 15cc5ee commit bb7dac1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

front_end/panels/application/InterestGroupStorageView.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ export class InterestGroupStorageView extends UI.SplitWidget.SplitWidget {
8787

8888
override wasShown(): void {
8989
super.wasShown();
90-
const sbw = this.sidebarWidget();
91-
if (sbw) {
92-
sbw.registerRequiredCSS(interestGroupStorageViewStyles);
90+
const mainWidget = this.mainWidget();
91+
if (mainWidget) {
92+
mainWidget.registerRequiredCSS(interestGroupStorageViewStyles);
9393
}
9494
}
9595

0 commit comments

Comments
 (0)