@@ -54,7 +54,7 @@ const Vulnerabilities = ({ vs }) => (
54
54
const ReportVulnerabilities = ( { get_ns, vulnerabilities } ) => {
55
55
let reportVulnerabilitiesTable ;
56
56
if ( vulnerabilities == null ) {
57
- reportVulnerabilitiesTable = < p style = { { 'font-style' : 'italic' } } > No vulnerabilities.</ p > ;
57
+ reportVulnerabilitiesTable = < p style = { { fontStyle : 'italic' } } > No vulnerabilities.</ p > ;
58
58
} else {
59
59
for ( let i = 0 ; i < vulnerabilities . length ; i ++ ) {
60
60
vulnerabilities [ i ] . ns = get_ns ( vulnerabilities [ i ] . cluster , vulnerabilities [ i ] . namespace ) ;
@@ -423,7 +423,7 @@ const MergeActivities = ({ merge_activities }) => {
423
423
const PostDeployJobs = ( { get_ns, post_deploy_jobs } ) => {
424
424
let postDeployJobsTable ;
425
425
if ( post_deploy_jobs == null ) {
426
- postDeployJobsTable = < p style = { { 'font-style' : 'italic' } } > No post_deploy_jobs.</ p > ;
426
+ postDeployJobsTable = < p style = { { fontStyle : 'italic' } } > No post_deploy_jobs.</ p > ;
427
427
} else {
428
428
for ( let i = 0 ; i < post_deploy_jobs . length ; i ++ ) {
429
429
post_deploy_jobs [ i ] . ns = get_ns ( post_deploy_jobs [ i ] . cluster , post_deploy_jobs [ i ] . namespace ) ;
@@ -514,7 +514,7 @@ const PostDeployJobs = ({ get_ns, post_deploy_jobs }) => {
514
514
const DeploymentValidations = ( { get_ns, deployment_validations } ) => {
515
515
let deploymentValidationTable ;
516
516
if ( deployment_validations == null ) {
517
- deploymentValidationTable = < p style = { { 'font-style' : 'italic' } } > No deployment_validations.</ p > ;
517
+ deploymentValidationTable = < p style = { { fontStyle : 'italic' } } > No deployment_validations.</ p > ;
518
518
} else {
519
519
for ( let i = 0 ; i < deployment_validations . length ; i ++ ) {
520
520
deployment_validations [ i ] . ns = get_ns ( deployment_validations [ i ] . cluster , deployment_validations [ i ] . namespace ) ;
@@ -702,7 +702,7 @@ const ServiceSLO = ({ get_ns, service_slo, slo_documents_for_report }) => {
702
702
throw new Error ( `No SLO documents found relating to SLOs` ) ;
703
703
}
704
704
if ( service_slo == null ) {
705
- ServiceSLOTable = < p style = { { 'font-style' : 'italic' } } > No service_slo.</ p > ;
705
+ ServiceSLOTable = < p style = { { fontStyle : 'italic' } } > No service_slo.</ p > ;
706
706
} else {
707
707
for ( let i = 0 ; i < service_slo . length ; i ++ ) {
708
708
const slo_doc = get_doc_for_slo ( slo_documents_for_report , service_slo [ i ] ) ;
@@ -818,7 +818,7 @@ function Report({ report, namespaces, saas_files, slo_documents }) {
818
818
promotionSection = (
819
819
< React . Fragment >
820
820
< h4 > Promotions</ h4 >
821
- < p style = { { 'font-style' : 'italic' } } > No promotions.</ p >
821
+ < p style = { { fontStyle : 'italic' } } > No promotions.</ p >
822
822
</ React . Fragment >
823
823
) ;
824
824
}
@@ -834,7 +834,7 @@ function Report({ report, namespaces, saas_files, slo_documents }) {
834
834
mergeSection = (
835
835
< React . Fragment >
836
836
< h4 > Merge Activties</ h4 >
837
- < p style = { { 'font-style' : 'italic' } } > No merge_activities.</ p >
837
+ < p style = { { fontStyle : 'italic' } } > No merge_activities.</ p >
838
838
</ React . Fragment >
839
839
) ;
840
840
}
0 commit comments