Skip to content

Commit dc72cd5

Browse files
authored
Merge pull request #13755 from nextcloud/chore/deps/nextcloud-vue-8.20.0
chore(deps): bump @nextcloud/vue lib from 8.19.0 to 8.20.0
2 parents 2cbea0d + 81094e1 commit dc72cd5

File tree

4 files changed

+18
-34
lines changed

4 files changed

+18
-34
lines changed

package-lock.json

+9-25
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"@nextcloud/router": "^3.0.1",
4040
"@nextcloud/sharing": "^0.2.3",
4141
"@nextcloud/upload": "^1.6.1",
42-
"@nextcloud/vue": "^8.19.0",
42+
"@nextcloud/vue": "^8.20.0",
4343
"@vueuse/components": "^11.2.0",
4444
"@vueuse/core": "^11.2.0",
4545
"blurhash": "^2.0.5",

src/components/LeftSidebar/LeftSidebar.spec.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -642,7 +642,7 @@ describe('LeftSidebar.vue', () => {
642642
expect(ncModalComponent.exists()).toBeTruthy()
643643

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

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

669669
// nothing created yet
670670
expect(createOneToOneConversationAction).not.toHaveBeenCalled()

src/components/NewConversationDialog/NewConversationSetupPage.vue

+6-6
Original file line numberDiff line numberDiff line change
@@ -115,17 +115,17 @@ export default {
115115
get() {
116116
return this.newConversation.displayName
117117
},
118-
set(event) {
119-
this.updateNewConversation({ displayName: event.target.value })
118+
set(displayName) {
119+
this.updateNewConversation({ displayName })
120120
},
121121
},
122122

123123
conversationDescription: {
124124
get() {
125125
return this.newConversation.description
126126
},
127-
set(event) {
128-
this.updateNewConversation({ description: event.target.value })
127+
set(description) {
128+
this.updateNewConversation({ description })
129129
},
130130
},
131131

@@ -172,8 +172,8 @@ export default {
172172
get() {
173173
return this.password
174174
},
175-
set(event) {
176-
this.$emit('update:password', event.target.value)
175+
set(value) {
176+
this.$emit('update:password', value)
177177
},
178178
},
179179

0 commit comments

Comments
 (0)