File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import tableStyles from "./table-styles.css.ts";
13
13
import { getHostFromUrlPattern , renderUrlPattern } from "./utils.ts" ;
14
14
15
15
interface TopResource {
16
- urlPattern : string ;
16
+ host : string ;
17
17
topLevelSites : Set < string > ;
18
18
bugIds : Set < string > ;
19
19
entries : Set < ExceptionListEntry > ;
@@ -70,7 +70,7 @@ export class TopExceptionsTable extends LitElement {
70
70
let topResource = topResources . get ( resourceHost ) ;
71
71
if ( ! topResource ) {
72
72
topResource = {
73
- urlPattern : resourceHost ,
73
+ host : resourceHost ,
74
74
topLevelSites : new Set ( ) ,
75
75
bugIds : new Set ( ) ,
76
76
entries : new Set ( ) ,
@@ -111,7 +111,7 @@ export class TopExceptionsTable extends LitElement {
111
111
( topResource ) => html `
112
112
< tr >
113
113
< td class ="compact-col "> ${ topResource . topLevelSites . size } </ td >
114
- < td > ${ renderUrlPattern ( topResource . urlPattern ) } </ td >
114
+ < td > ${ topResource . host } </ td >
115
115
< td >
116
116
< button
117
117
@click =${ ( ) => this . onDetailClick ( Array . from ( topResource . entries . values ( ) ) ) }
You can’t perform that action at this time.
0 commit comments