ピン留めされたノートを詳細表示しないように
This commit is contained in:
parent
1946ff8ed4
commit
7bf9d726d0
1 changed files with 2 additions and 2 deletions
|
@ -80,7 +80,7 @@
|
||||||
</div>
|
</div>
|
||||||
<template v-if="page === 'index'">
|
<template v-if="page === 'index'">
|
||||||
<div v-if="user.pinnedNotes.length > 0" class="_vMargin">
|
<div v-if="user.pinnedNotes.length > 0" class="_vMargin">
|
||||||
<XNote v-for="note in user.pinnedNotes" class="note _vMargin" :note="note" @update:note="pinnedNoteUpdated(note, $event)" :key="note.id" :detail="true" :pinned="true"/>
|
<XNote v-for="note in user.pinnedNotes" class="note _vMargin" :note="note" @update:note="pinnedNoteUpdated(note, $event)" :key="note.id" :pinned="true"/>
|
||||||
</div>
|
</div>
|
||||||
<div class="_vMargin">
|
<div class="_vMargin">
|
||||||
<XUserTimeline :user="user"/>
|
<XUserTimeline :user="user"/>
|
||||||
|
@ -195,7 +195,7 @@
|
||||||
<template v-if="page === 'index'">
|
<template v-if="page === 'index'">
|
||||||
<div class="_content _vMargin">
|
<div class="_content _vMargin">
|
||||||
<div v-if="user.pinnedNotes.length > 0" class="_vMargin">
|
<div v-if="user.pinnedNotes.length > 0" class="_vMargin">
|
||||||
<XNote v-for="note in user.pinnedNotes" class="note _vMargin" :note="note" @update:note="pinnedNoteUpdated(note, $event)" :key="note.id" :detail="true" :pinned="true"/>
|
<XNote v-for="note in user.pinnedNotes" class="note _vMargin" :note="note" @update:note="pinnedNoteUpdated(note, $event)" :key="note.id" :pinned="true"/>
|
||||||
</div>
|
</div>
|
||||||
<XPhotos :user="user" :key="user.id" class="_vMargin"/>
|
<XPhotos :user="user" :key="user.id" class="_vMargin"/>
|
||||||
<XActivity :user="user" :key="user.id" class="_vMargin"/>
|
<XActivity :user="user" :key="user.id" class="_vMargin"/>
|
||||||
|
|
Loading…
Reference in a new issue