UI: Use single quotes instead of double quotes in AWSInstanceTable.js

This commit is contained in:
Mike Salvatore 2022-05-12 07:08:16 -04:00
parent 70ae745a52
commit 25cfa58c69
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ function AWSInstanceTable(props) {
if (isSelected(instId)) {
color = '#ffed9f';
} else if (runResult) {
color = runResult.status === "error" ? '#f00000' : '#00f01b'
color = runResult.status === 'error' ? '#f00000' : '#00f01b'
}
}