diff --git a/src/js/techreport/table.js b/src/js/techreport/table.js index 9658f05e..4e16fcde 100644 --- a/src/js/techreport/table.js +++ b/src/js/techreport/table.js @@ -192,7 +192,7 @@ function updateTable(id, config, appConfig, apps, data) { if(column.viz === 'progress-circle' && value) { const score = DataUtils.getLighthouseScoreCategories(value, appConfig.lighthouse_brackets); - wrapper.classList.add('progress-circle', score.name); + wrapper.classList.add('progress-circle', score?.name); wrapper.setAttribute('style', `--offset: ${value}%`); }