@@ -110,7 +110,7 @@ export const Metrics = () => {
110110 < div
111111 className = 'border rounded genome-card cursor-pointer p-3'
112112 onClick = { ( ) => setMetricModalProps ( {
113- title : 'Files by Genome' ,
113+ title : 'BED Files by Genome' ,
114114 type : 'bar' ,
115115 data : Object . entries ( detailedStats ?. file_genome || { } ) ,
116116 dataLabel : 'Number of BED files' ,
@@ -119,7 +119,7 @@ export const Metrics = () => {
119119 sliceIndex : Object . entries ( detailedStats ?. file_genome || { } ) . length
120120 } ) }
121121 >
122- < h6 className = 'fw-semibold' > Files by Genome</ h6 >
122+ < h6 className = 'fw-semibold' > BED Files by Genome</ h6 >
123123 < MetricPlot
124124 type = 'bar'
125125 data = { Object . entries ( detailedStats ?. file_genome || { } ) }
@@ -132,7 +132,7 @@ export const Metrics = () => {
132132 < div
133133 className = 'border rounded genome-card cursor-pointer p-3'
134134 onClick = { ( ) => setMetricModalProps ( {
135- title : 'Files by Type' ,
135+ title : 'BED Files by Type' ,
136136 type : 'bar' ,
137137 data : Object . entries ( detailedStats ?. file_type || { } ) ,
138138 dataLabel : 'Number of BED files' ,
@@ -141,7 +141,7 @@ export const Metrics = () => {
141141 sliceIndex : Object . entries ( detailedStats ?. file_type || { } ) . length
142142 } ) }
143143 >
144- < h6 className = 'fw-semibold' > Files by Type</ h6 >
144+ < h6 className = 'fw-semibold' > BED Files by Type</ h6 >
145145 < MetricPlot
146146 type = 'bar'
147147 data = { Object . entries ( detailedStats ?. file_type || { } ) }
@@ -157,7 +157,7 @@ export const Metrics = () => {
157157 < div
158158 className = 'h-100 border rounded genome-card cursor-pointer p-3'
159159 onClick = { ( ) => setMetricModalProps ( {
160- title : 'Files by Format' ,
160+ title : 'BED Files by Format' ,
161161 type : 'pie' ,
162162 data : Object . entries ( detailedStats ?. file_format || { } ) ,
163163 backgroundColor : [
@@ -172,7 +172,7 @@ export const Metrics = () => {
172172 sliceIndex : Object . entries ( detailedStats ?. file_format || { } ) . length
173173 } ) }
174174 >
175- < h6 className = 'fw-semibold' > Files by Format</ h6 >
175+ < h6 className = 'fw-semibold' > BED Files by Format</ h6 >
176176 < div className = 'p-5' >
177177 < MetricPlot
178178 type = 'pie'
0 commit comments