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

Fixed pages unable to be filtered

- this was due to a typo - it should be singular
This commit is contained in:
Daniel Lockyer 2022-08-22 19:33:54 +02:00
parent 6697dcb39a
commit c4df99f8a6
No known key found for this signature in database
GPG key ID: D21186F0B47295AD

View file

@ -10,7 +10,7 @@ const ALL_EVENT_TYPES = [
const ALL_RESOURCE_TYPES = [
{event: 'post', icon: 'event-filter-payment', name: 'Posts'},
{event: 'pages', icon: 'event-filter-payment', name: 'Pages'},
{event: 'page', icon: 'event-filter-payment', name: 'Pages'},
{event: 'tag', icon: 'event-filter-newsletter', name: 'Tags'},
{event: 'user', icon: 'idk', name: 'Users'},
{event: 'integration', icon: 'event-filter-newsletter', name: 'Integrations'},