Skip to content

Commit

Permalink
fix: typo and code readability
Browse files Browse the repository at this point in the history
  • Loading branch information
Axxiar committed Jan 30, 2025
1 parent 7213ff6 commit 17d61d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/lib/components/RiskMatrix/RiskMatrix.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<Cell
{cell}
cellData={displayedData[i][j]}
popupTarget={'popupdata-' + matrixName + '-' + i + '-' + j}
popupTarget={`popupdata-${matrixName}-${i}-${j}`}
{dataItemComponent}
{useBubbles}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@

<RiskMatrix
riskMatrix={risk_assessment.risk_matrix}
matrixName={'resiudal'}
matrixName={'residual'}
data={residualCluster}
dataItemComponent={RiskScenarioItem}
{showRisks}
Expand Down

0 comments on commit 17d61d1

Please sign in to comment.