Skip to content
Snippets Groups Projects
Unverified Commit 7cbdeb70 authored by Christoph Wurst's avatar Christoph Wurst Committed by GitHub
Browse files

Merge pull request #3108 from nextcloud/fix/envelope-list-update-prop

Fix updating a prop
parents 8491d742 658b31d2
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@
v-if="collapsible && envelopes.length > collapseThreshold"
:key="'list-collapse-' + this.searchQuery"
class="collapse-expand"
@click="collapsed = !collapsed"
@click="$emit('update:collapsed', !collapsed)"
>
<template v-if="collapsed">{{ t('mail', 'Show all {nr} messages', {nr: envelopes.length}) }}</template>
<template v-else>{{ t('mail', 'Collapse messages') }}</template>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment