diff --git a/src/App.vue b/src/App.vue index 38bbb10..f787dd7 100644 --- a/src/App.vue +++ b/src/App.vue @@ -91,7 +91,7 @@ export default class App extends Vue { const match = eventData?.title?.match(/([^\/]*) \| ([^-]*) - (.*)/); if (match) { const [, member, shop, tool] = match; - eventData.title = member; + eventData.title = `${tool} - ${member}`; if (this.toolFilter === null || tool.includes(this.toolFilter)) { return eventData; }