mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-02 08:21:09 -08:00
Merge pull request #16071 from snipe/bug/sc-28149
Some checks failed
Crowdin Action / upload-sources-to-crowdin (push) Has been cancelled
Docker images (Alpine) / docker (push) Has been cancelled
Docker images / docker (push) Has been cancelled
Tests in MySQL / PHP ${{ matrix.php-version }} (8.1) (push) Has been cancelled
Tests in MySQL / PHP ${{ matrix.php-version }} (8.2) (push) Has been cancelled
Tests in MySQL / PHP ${{ matrix.php-version }} (8.3) (push) Has been cancelled
Tests in SQLite / PHP ${{ matrix.php-version }} (8.1.1) (push) Has been cancelled
Some checks failed
Crowdin Action / upload-sources-to-crowdin (push) Has been cancelled
Docker images (Alpine) / docker (push) Has been cancelled
Docker images / docker (push) Has been cancelled
Tests in MySQL / PHP ${{ matrix.php-version }} (8.1) (push) Has been cancelled
Tests in MySQL / PHP ${{ matrix.php-version }} (8.2) (push) Has been cancelled
Tests in MySQL / PHP ${{ matrix.php-version }} (8.3) (push) Has been cancelled
Tests in SQLite / PHP ${{ matrix.php-version }} (8.1.1) (push) Has been cancelled
This commit is contained in:
commit
37b39956b5
|
@ -46,7 +46,7 @@ class ActionlogPresenter extends Presenter
|
|||
return 'fa-solid fa-mobile-screen';
|
||||
}
|
||||
|
||||
if ($this->action_type == 'create new') {
|
||||
if ($this->action_type == 'create') {
|
||||
return 'fa-solid fa-user-plus';
|
||||
}
|
||||
|
||||
|
@ -70,7 +70,7 @@ class ActionlogPresenter extends Presenter
|
|||
}
|
||||
|
||||
// Everything else
|
||||
if ($this->action_type == 'create new') {
|
||||
if ($this->action_type == 'create') {
|
||||
return 'fa-solid fa-plus';
|
||||
}
|
||||
|
||||
|
@ -98,6 +98,10 @@ class ActionlogPresenter extends Presenter
|
|||
return 'fa-solid fa-rotate-right';
|
||||
}
|
||||
|
||||
if ($this->action_type == 'note_added') {
|
||||
return 'fas fa-sticky-note';
|
||||
}
|
||||
|
||||
return 'fa-solid fa-rotate-right';
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue