Merge pull request #16071 from snipe/bug/sc-28149
This commit is contained in:
commit
37b39956b5
1 changed files with 6 additions and 2 deletions
|
@ -46,7 +46,7 @@ class ActionlogPresenter extends Presenter
|
||||||
return 'fa-solid fa-mobile-screen';
|
return 'fa-solid fa-mobile-screen';
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($this->action_type == 'create new') {
|
if ($this->action_type == 'create') {
|
||||||
return 'fa-solid fa-user-plus';
|
return 'fa-solid fa-user-plus';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -70,7 +70,7 @@ class ActionlogPresenter extends Presenter
|
||||||
}
|
}
|
||||||
|
|
||||||
// Everything else
|
// Everything else
|
||||||
if ($this->action_type == 'create new') {
|
if ($this->action_type == 'create') {
|
||||||
return 'fa-solid fa-plus';
|
return 'fa-solid fa-plus';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -98,6 +98,10 @@ class ActionlogPresenter extends Presenter
|
||||||
return 'fa-solid fa-rotate-right';
|
return 'fa-solid fa-rotate-right';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($this->action_type == 'note_added') {
|
||||||
|
return 'fas fa-sticky-note';
|
||||||
|
}
|
||||||
|
|
||||||
return 'fa-solid fa-rotate-right';
|
return 'fa-solid fa-rotate-right';
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue