summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/views/Contacts.vue4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/views/Contacts.vue b/src/views/Contacts.vue
index 5820dcb4..52b9d2ea 100644
--- a/src/views/Contacts.vue
+++ b/src/views/Contacts.vue
@@ -138,7 +138,9 @@ export default {
data() {
return {
- appName,
+ // The object shorthand syntax is breaking builds (bug in @babel/preset-env)
+ /* eslint-disable object-shorthand */
+ appName: appName,
// Let's but the loading state to true if circles is enabled
loadingCircles: isCirclesEnabled,