0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-03-18 02:21:47 -05:00

Added fallback icon to audit log

- in the event we don't have a specific icon, I've just chosen to show
  an `info` one for now
This commit is contained in:
Daniel Lockyer 2022-08-17 14:54:54 +02:00
parent 83702c7e86
commit 3ce7e241a1
No known key found for this signature in database
GPG key ID: D21186F0B47295AD

View file

@ -33,6 +33,8 @@ function getActionIcon(ev) {
case 'deleted':
return 'cross-circle';
}
return 'info';
}
function getAction(ev) {