Skip to content

Commit c6863f7

Browse files
authored
Neural Insights - minor fixes (#1449)
Signed-off-by: aradys-intel <agata.radys@intel.com>
1 parent 5605f3e commit c6863f7

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

neural_insights/gui/src/components/Diagnosis/Diagnosis.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
flex-direction: column;
6666
max-height: 90vh;
6767
}
68-
68+
6969
.workloads-flex {
7070
display: flex;
7171
flex-direction: column;

neural_insights/gui/src/components/OpDetails/OpDetails.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,8 @@
1919
#opDetails {
2020
height: 560px;
2121
max-width: 40vw;
22+
}
23+
24+
.table-value {
25+
word-break: break-all;
2226
}

neural_insights/gui/src/components/OpList/OpList.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ export default function OpList({ selectedWorkload, setSelectedOp, selectedOp, se
5050
<td className="cell">{opData['OP name']}</td>
5151
<td className="cell right nowrap">{opData['MSE'].toExponential(3)}</td>
5252
{typeof opList[0]['Activation Min'] !== 'undefined' &&
53-
<td className="cell right">{opData['Activation Min'].toFixed(2)}</td>
53+
<td className="cell right">{opData['Activation Min']?.toFixed(2)}</td>
5454
}
5555
{typeof opList[0]['Activation Max'] !== 'undefined' &&
56-
<td className="cell right">{opData['Activation Max'].toFixed(2)}</td>
56+
<td className="cell right">{opData['Activation Max']?.toFixed(2)}</td>
5757
}
5858
</tr>
5959
)

0 commit comments

Comments
 (0)