diff --git a/src/views/person/PersonDetail.svelte b/src/views/person/PersonDetail.svelte index 6315e6e2..c99e2b42 100644 --- a/src/views/person/PersonDetail.svelte +++ b/src/views/person/PersonDetail.svelte @@ -57,6 +57,8 @@ actions.push({onClick: openAdvanced, label: 'Advanced', icon: 'sliders'}) } + actions.push({onClick: openProfileInfo, label: 'Profile', icon: 'info'}) + if (user.getPubkey() === pubkey && $canPublish) { actions.push({onClick: () => navigate('/profile'), label: 'Edit', icon: 'edit'}) } @@ -126,6 +128,10 @@ modal.set({type: 'person/settings', person}) } + const openProfileInfo = () => { + modal.set({type: 'person/info', person}) + } + const share = () => { modal.set({type: 'person/share', person}) }