Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Web composer improvements (#2257)

* Keep the emoji picker in the tablet width (close #1880)

* Support pressing tab to select a mention (close #1831)

authored by

Paul Frazee and committed by
GitHub
d068cb19 39a5a1e3

+2 -2
+1 -1
src/view/com/composer/Composer.tsx
··· 452 452 <OpenCameraBtn gallery={gallery} /> 453 453 </> 454 454 ) : null} 455 - {isDesktop ? <EmojiPickerButton /> : null} 455 + {!isMobile ? <EmojiPickerButton /> : null} 456 456 <View style={s.flex1} /> 457 457 <SelectLangBtn /> 458 458 <CharProgress count={graphemeLength} />
+1 -1
src/view/com/composer/text-input/web/Autocomplete.tsx
··· 134 134 return true 135 135 } 136 136 137 - if (event.key === 'Enter') { 137 + if (event.key === 'Enter' || event.key === 'Tab') { 138 138 enterHandler() 139 139 return true 140 140 }