summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Steinmetz <richard@steinmetz.cloud>2023-12-18 20:15:46 +0100
committerGitHub <noreply@github.com>2023-12-18 20:15:46 +0100
commit6c77c1325ebc8c543e97bddc0c01f94110d65299 (patch)
tree8fafbecaf1a354322a6257d582be0d0a56605c0a
parent72b0ea36b423677447b1b3aaa5e2de32a938533f (diff)
parent83d37ef1b1b1c950bd11f73a8bcc9f51291264a8 (diff)
Merge pull request #3688 from nextcloud/fix/prod-build
chore: fix prod build after updating babel/preset-env
-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,