Skip to content

Commit 6210059

Browse files
danilsomsikovDevtools-frontend LUCI CQ
authored and
Devtools-frontend LUCI CQ
committed
Explicitly set "striped" property where the new data grid replaces the lit-based one.
The latter was always striped. Bug: 390346490 Change-Id: Id70b7faf2a3d6ee85f193cd123aadd3839b9a74d Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/6197648 Commit-Queue: Danil Somsikov <[email protected]> Reviewed-by: Wolfgang Beyer <[email protected]>
1 parent e32a8b5 commit 6210059

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

front_end/panels/application/components/InterestGroupAccessGrid.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export class InterestGroupAccessGrid extends HTMLElement {
8787
}
8888

8989
return html`
90-
<devtools-new-data-grid @select=${this.#onSelect}>
90+
<devtools-new-data-grid @select=${this.#onSelect} striped>
9191
<table>
9292
<tr>
9393
<th id="event-time" sortable weight="10">${i18nString(UIStrings.eventTime)}</td>

front_end/panels/network/components/WebBundleInfoView.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export class WebBundleInfoView extends LegacyWrapper.LegacyWrapper.WrappableComp
6868
</devtools-icon>
6969
</x-link>
7070
</div>
71-
<devtools-new-data-grid>
71+
<devtools-new-data-grid striped>
7272
<table>
7373
<tr><th id="url">${i18nString(UIStrings.bundledResource)}</th></tr>
7474
${this.#webBundleInfo.resourceUrls?.map(url => {

front_end/panels/protocol_monitor/ProtocolMonitor.ts

+1
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,7 @@ export class ProtocolMonitorDataGrid extends Common.ObjectWrapper.eventMixin<Eve
241241
settingName: 'protocol-monitor-panel-split',
242242
defaultSidebarWidth: 250}}>
243243
<devtools-new-data-grid
244+
striped
244245
slot="main"
245246
@select=${input.onSelect}
246247
@contextmenu=${input.onContextMenu}

0 commit comments

Comments
 (0)