@ -175,7 +175,7 @@ namespace MediaBrowser.Api.Reports
if ( reportResult . IsGrouped )
foreach ( ReportGroup group in reportResult . Groups )
{
returnValue . AppendLine ( "<tr style='background-color: rgb(51, 51, 51);' >") ;
returnValue . AppendLine ( "<tr >") ;
returnValue . AppendLine ( "<th scope='rowgroup' colspan='" + reportResult . Headers . Count + "'>" + ( string . IsNullOrEmpty ( group . Name ) ? " " : group . Name ) + "</th>" ) ;
returnValue . AppendLine ( "</tr>" ) ;
foreach ( ReportRow row in group . Rows )
@ -183,7 +183,7 @@ namespace MediaBrowser.Api.Reports
ExportToExcelRow ( reportResult , returnValue , row ) ;
}
returnValue . AppendLine ( "<tr>" ) ;
returnValue . AppendLine ( "<th s cope='rowgroup' colspan='" + reportResult . Headers . Count + "'>" + " " + "</th>" ) ;
returnValue . AppendLine ( "<th s tyle='background-color: #ffffff;' s cope='rowgroup' colspan='" + reportResult . Headers . Count + "'>" + " " + "</th>" ) ;
returnValue . AppendLine ( "</tr>" ) ;
}