logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://anongit.hacktivis.me/git/pleroma-fe.git/
commit: bd99d3e9d5430f46f76c5dd374eada2ae3f08ae8
parent b831f34c06d93d714f4113b4be42efbf74c40743
Author: Henry Jameson <me@hjkos.com>
Date:   Tue, 14 Jan 2025 09:59:03 +0200

fix bookmarks folders

Diffstat:

Msrc/components/status_action_buttons/action_button.js1+
Msrc/components/status_action_buttons/action_button.vue2+-
2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/components/status_action_buttons/action_button.js b/src/components/status_action_buttons/action_button.js @@ -51,6 +51,7 @@ library.add( export default { props: [ 'button', + 'status', 'extra', 'status', 'funcArg', diff --git a/src/components/status_action_buttons/action_button.vue b/src/components/status_action_buttons/action_button.vue @@ -77,7 +77,7 @@ /> </template> <template #content> - <StatusBookmarkFolderMenu v-if="button.name === 'bookmark'" :status="$attrs.status" /> + <StatusBookmarkFolderMenu v-if="button.name === 'bookmark'" :status="status" /> </template> </Popover> </div>