Skip to content

Commit

Permalink
Merge pull request #13755 from nextcloud/chore/deps/nextcloud-vue-8.20.0
Browse files Browse the repository at this point in the history
chore(deps): bump @nextcloud/vue lib from 8.19.0 to 8.20.0
  • Loading branch information
ShGKme authored Nov 12, 2024
2 parents 2cbea0d + 81094e1 commit dc72cd5
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 34 deletions.
34 changes: 9 additions & 25 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"@nextcloud/router": "^3.0.1",
"@nextcloud/sharing": "^0.2.3",
"@nextcloud/upload": "^1.6.1",
"@nextcloud/vue": "^8.19.0",
"@nextcloud/vue": "^8.20.0",
"@vueuse/components": "^11.2.0",
"@vueuse/core": "^11.2.0",
"blurhash": "^2.0.5",
Expand Down
4 changes: 2 additions & 2 deletions src/components/LeftSidebar/LeftSidebar.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ describe('LeftSidebar.vue', () => {
expect(ncModalComponent.exists()).toBeTruthy()

const input = ncModalComponent.findComponent({ name: 'NcTextField', ref: 'conversationName' })
expect(input.props('value')).toBe(groupsResults[1].label)
expect(input.props('modelValue')).toBe(groupsResults[1].label)

// nothing created yet
expect(createOneToOneConversationAction).not.toHaveBeenCalled()
Expand All @@ -664,7 +664,7 @@ describe('LeftSidebar.vue', () => {
const ncModalComponent = wrapper.findComponent({ name: 'NcModal' })
expect(ncModalComponent.exists()).toBeTruthy()
const input = ncModalComponent.findComponent({ name: 'NcTextField', ref: 'conversationName' })
expect(input.props('value')).toBe(circlesResults[1].label)
expect(input.props('modelValue')).toBe(circlesResults[1].label)

// nothing created yet
expect(createOneToOneConversationAction).not.toHaveBeenCalled()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,17 +115,17 @@ export default {
get() {
return this.newConversation.displayName
},
set(event) {
this.updateNewConversation({ displayName: event.target.value })
set(displayName) {
this.updateNewConversation({ displayName })
},
},

conversationDescription: {
get() {
return this.newConversation.description
},
set(event) {
this.updateNewConversation({ description: event.target.value })
set(description) {
this.updateNewConversation({ description })
},
},

Expand Down Expand Up @@ -172,8 +172,8 @@ export default {
get() {
return this.password
},
set(event) {
this.$emit('update:password', event.target.value)
set(value) {
this.$emit('update:password', value)
},
},

Expand Down

0 comments on commit dc72cd5

Please sign in to comment.