From bdf9b1637fe221996ee37e1879fccb5452d9a0a6 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Sat, 8 May 2021 15:50:09 -0400 Subject: [PATCH] Add the tool name back in to the event title --- src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }