Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/NcAppContent/NcAppContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -405,13 +405,13 @@
},

handlePaneResize(event) {
const listPaneSize = parseInt(event[0].size, 10)
const listPaneSize = parseInt(event.panes[0].size, 10)

Check warning on line 408 in src/components/NcAppContent/NcAppContent.vue

View check run for this annotation

Codecov / codecov/patch

src/components/NcAppContent/NcAppContent.vue#L408

Added line #L408 was not covered by tests
browserStorage.setItem(this.paneConfigID, JSON.stringify(listPaneSize))
this.listPaneSize = listPaneSize
/**
* Emitted when the list pane is resized by the user
*/
this.$emit('resize:list', { size: listPaneSize })

Check warning on line 414 in src/components/NcAppContent/NcAppContent.vue

View workflow job for this annotation

GitHub Actions / eslint

Custom event name 'resize:list' must be camelCase
console.debug('AppContent pane config', listPaneSize)
},

Expand Down
Loading