Update untriaged item text color from green to yellow (#7363)

The `untriaged` label was displayed in green with a checkmark before it, which doesn't really convey
the state of the alert (someone might think the work is done here).
This patch updates the element so it uses yellow instead (from the `text-warning` class).

Bug was filed in bugzilla: for https://bugzilla.mozilla.org/show_bug.cgi?id=1741449
This commit is contained in:
Nicolas Chevobbe 2022-02-07 09:05:42 +01:00 коммит произвёл GitHub
Родитель 033ca70a40
Коммит a4a2e21c50
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -207,7 +207,7 @@ export default class AlertTableRow extends React.Component {
statusColor = 'text-danger';
}
if (alertStatus === 'untriaged') {
statusColor = 'text-success';
statusColor = 'text-warning';
}
if (
alertStatus === 'invalid' ||