Skip to content

Commit

Permalink
Merge pull request #3688 from nextcloud/fix/prod-build
Browse files Browse the repository at this point in the history
chore: fix prod build after updating babel/preset-env
  • Loading branch information
st3iny authored Dec 18, 2023
2 parents 72b0ea3 + 83d37ef commit 6c77c13
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/views/Contacts.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 6c77c13

Please sign in to comment.