Skip to content

Commit

Permalink
fix(core): fix issue in console log modal (#9134)
Browse files Browse the repository at this point in the history
  • Loading branch information
dogonthehorizon committed May 5, 2021
1 parent cb7380e commit 8aeeaf7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const ConsoleOutputModal = ({ dismissModal, instance, usesMultiOutput }:
{((consoleOutput as IInstanceMultiOutputLog[]) || []).map((log: IInstanceMultiOutputLog) => (
<ul className="tabs-basic console-output-tabs">
<li
className={`console-output-tab ${log.name === selectedLog.name ? 'selected' : ''}`}
className={`console-output-tab ${log?.name === selectedLog?.name ? 'selected' : ''}`}
onClick={() => setSelectedLog(log)}
ng-repeat="log in vm.consoleOutput"
>
Expand Down

0 comments on commit 8aeeaf7

Please sign in to comment.