restore ordering of MkNotes attributes in index.timeline.vue

This commit is contained in:
Hazelnoot 2024-11-02 11:50:22 -04:00
parent f5652605ec
commit 1c181df086
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkNote v-for="note of user.pinnedNotes" :key="note.id" class="note" :class="$style.pinnedNote" :note="note" :pinned="true"/>
</div>
</div>
<MkNotes v-else :class="$style.tl" :noGap="true" :pagination="pagination"/>
<MkNotes v-else :noGap="true" :pagination="pagination" :class="$style.tl"/>
</MkStickyContainer>
</template>