mirror of
https://activitypub.software/TransFem-org/Sharkey
synced 2024-12-20 15:30:09 +00:00
merge: user profile: only default to "pinned notes" if they exist (!808)
View MR for information: https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/808 Approved-by: Hazelnoot <acomputerdog@gmail.com> Approved-by: Marie <github@yuugi.dev>
This commit is contained in:
commit
ee01d5fbdf
1 changed files with 1 additions and 1 deletions
|
@ -260,7 +260,7 @@ const memoDraft = ref(props.user.memo);
|
||||||
const isEditingMemo = ref(false);
|
const isEditingMemo = ref(false);
|
||||||
const moderationNote = ref(props.user.moderationNote);
|
const moderationNote = ref(props.user.moderationNote);
|
||||||
const editModerationNote = ref(false);
|
const editModerationNote = ref(false);
|
||||||
const noteview = ref<string | null>('pinned');
|
const noteview = ref<string | null>(props.user.pinnedNotes.length ? 'pinned' : null);
|
||||||
|
|
||||||
const listenbrainzdata = ref(false);
|
const listenbrainzdata = ref(false);
|
||||||
if (props.user.listenbrainz) {
|
if (props.user.listenbrainz) {
|
||||||
|
|
Loading…
Reference in a new issue