@Old_Death
I updated it to 1.4.4. Please update or reinstall the module.
I found a bug about twice applying the user event filter/transformer on the drawing miniMonth and agenda board.
However, that is not the real reason for your symptoms. You just made a mistake on your filtering. (You drop out “Natalia” events by filtering, so they were not able to be transformed.)
Anyway, here is my example.
eventFilter: (ev) => {
return (ev.title.search('Test') > -1)
},
eventTransformer: (ev) => {
ev.title = ev.title.replace('Test', '@')
return ev
}
This code means
- Filter out all other events except the event which has
Test
in the title. - Then transform
Test
to@
.
You can see the result below;
ORIGINAL
CONFIGURED