diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-05-10 16:52:05 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-05-10 16:52:05 +0900 |
| commit | 9784ade84f5bfecd6d3daec6b271aaee3466fa95 (patch) | |
| tree | a90a9f610f8e989cc68c25e1f261f02a9f792295 | |
| parent | fix(client): Do not expand each notes in my/mentions (diff) | |
| download | sharkey-9784ade84f5bfecd6d3daec6b271aaee3466fa95.tar.gz sharkey-9784ade84f5bfecd6d3daec6b271aaee3466fa95.tar.bz2 sharkey-9784ade84f5bfecd6d3daec6b271aaee3466fa95.zip | |
fix(client): Do not expand each notes in my/messages
| -rw-r--r-- | src/client/pages/messages.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/pages/messages.vue b/src/client/pages/messages.vue index 1165004e97..e607b86546 100644 --- a/src/client/pages/messages.vue +++ b/src/client/pages/messages.vue @@ -2,7 +2,7 @@ <div> <portal to="icon"><fa :icon="faEnvelope"/></portal> <portal to="title">{{ $t('directNotes') }}</portal> - <x-notes :pagination="pagination" :detail="true" @before="before()" @after="after()"/> + <x-notes :pagination="pagination" @before="before()" @after="after()"/> </div> </template> |