webui: Changed alert rule triggered icon from X to ! (#8760)

![image](https://user-images.githubusercontent.com/39462/40490177-981b5a78-5f30-11e8-949d-2353272b334b.png)


DO NOT DELETE THIS TEXT

#### Please note

> Please read this information carefully. You can run `./scripts/pre-commit.php` to check your code before submitting.

- [x] Have you followed our [code guidelines?](http://docs.librenms.org/Developing/Code-Guidelines/)

#### Testers

If you would like to test this pull request then please run: `./scripts/github-apply <pr_id>`, i.e `./scripts/github-apply 5926`
This commit is contained in:
Tony Murray 2018-05-24 14:14:25 -05:00 committed by Neil Lathwood
parent 9b78424b0c
commit b0968e850c

View File

@ -131,7 +131,7 @@ foreach (dbFetchRows($full_query, $param) as $rule) {
$ico = 'check';
$col = 'success';
} elseif ((int) $sub['state'] === 1 || (int) $sub['state'] === 2) {
$ico = 'remove';
$ico = 'exclamation';
$col = 'danger';
$extra = 'danger';
}