diff --git a/src/App.vue b/src/App.vue index c6d4a60..6f29627 100644 --- a/src/App.vue +++ b/src/App.vue @@ -85,6 +85,9 @@ export default class App extends Vue { } eventDataTransform(eventData: EventInput): EventInput | false { + // clear the url to prevent clicking on the event + delete eventData.url; + const match = eventData.title.match(/([^\/]*) \| ([^-]*) - (.*)/); if (match !== null) { const [, member, shop, tool] = match;