this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Disable post with hashtags if there's hashtag column

+7 -5
+3 -1
src/components/compose-button.jsx
··· 52 52 const buttonRef = useRef(null); 53 53 const menuRef = useRef(null); 54 54 55 + const columnMode = snapStates.settings.shortcutsViewMode === 'multi-column'; 56 + 55 57 function handleButton(e) { 56 58 // useKey will even listen to Shift 57 59 // e.g. press Shift (without c) will trigger this 😱 ··· 66 68 const composeDataElements = document.querySelectorAll('data.compose-data'); 67 69 // If there's a lot of them, ignore 68 70 const opts = 69 - composeDataElements.length === 1 71 + !columnMode && composeDataElements.length === 1 70 72 ? JSON.parse(composeDataElements[0].value) 71 73 : undefined; 72 74
+3 -3
src/locales/en.po
··· 604 604 msgid "Home" 605 605 msgstr "" 606 606 607 - #: src/components/compose-button.jsx:148 607 + #: src/components/compose-button.jsx:150 608 608 #: src/compose.jsx:38 609 609 msgid "Compose" 610 610 msgstr "" 611 611 612 - #: src/components/compose-button.jsx:175 612 + #: src/components/compose-button.jsx:177 613 613 #: src/components/nav-menu.jsx:265 614 614 #: src/pages/scheduled-posts.jsx:31 615 615 #: src/pages/scheduled-posts.jsx:78 616 616 msgid "Scheduled Posts" 617 617 msgstr "Scheduled Posts" 618 618 619 - #: src/components/compose-button.jsx:188 619 + #: src/components/compose-button.jsx:190 620 620 msgid "Add to thread" 621 621 msgstr "Add to thread" 622 622
+1 -1
src/pages/hashtag.jsx
··· 527 527 </Menu2> 528 528 } 529 529 /> 530 - {!!hashtags?.length && ( 530 + {!columnMode && !!hashtags?.length && ( 531 531 <data 532 532 class="compose-data" 533 533 value={JSON.stringify({