Skip to content

Commit e16f380

Browse files
wolfibDevtools-frontend LUCI CQ
authored andcommitted
[Patch agent] Fix width of workspace selection dialog
Screenshots: https://imgur.com/a/Y36u1O9 Bug: 393266352 Change-Id: Ib606a531fcd0715cd4f9894e03f298e8cd99254a Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6348461 Auto-Submit: Wolfgang Beyer <[email protected]> Reviewed-by: Ergün Erdoğmuş <[email protected]> Commit-Queue: Ergün Erdoğmuş <[email protected]> Commit-Queue: Wolfgang Beyer <[email protected]>
1 parent 1e817df commit e16f380

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

front_end/panels/ai_assistance/SelectWorkspaceDialog.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ export class SelectWorkspaceDialog extends UI.Widget.VBox {
7171
},
7272
view?: View) {
7373
super();
74+
this.element.classList.add('dialog-container');
7475
this.registerRequiredCSS(selectWorkspaceDialogStyles);
7576
this.#boundOnKeyDown = this.#onKeyDown.bind(this);
7677
this.#handleProjectSelected = options.handleProjectSelected;

front_end/panels/ai_assistance/selectWorkspaceDialog.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
* found in the LICENSE file.
55
*/
66

7+
.dialog-container {
8+
width: 100%;
9+
}
10+
711
.dialog-header {
812
margin: var(--sys-size-6) var(--sys-size-8) var(--sys-size-5);
913
font: var(--sys-typescale-headline5);

0 commit comments

Comments
 (0)