diff options
author | Ollie H <renahlee@outlook.com> | 2023-05-15 13:18:39 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-15 15:18:39 -0500 |
commit | 628d8773255d403347b0cbb98afa6681768d428e (patch) | |
tree | 364177969bc142dd71e871b9261c6304d2c19a42 /src/view/com/post-thread/PostThreadItem.tsx | |
parent | 0a0afdf2c2c90c5460784935e9d1324dadf61d48 (diff) | |
download | voidsky-628d8773255d403347b0cbb98afa6681768d428e.tar.zst |
Use dropdown for web reposting and quote posting (#607)
* Use dropdown for web reposting and quote posting * Remove collateral damage * Tune the repost dropdown positioning * Move postctrls into their own folder * Factor out repost button into native/web build --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>
Diffstat (limited to 'src/view/com/post-thread/PostThreadItem.tsx')
-rw-r--r-- | src/view/com/post-thread/PostThreadItem.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/post-thread/PostThreadItem.tsx b/src/view/com/post-thread/PostThreadItem.tsx index 563a3ead6..084e30a25 100644 --- a/src/view/com/post-thread/PostThreadItem.tsx +++ b/src/view/com/post-thread/PostThreadItem.tsx @@ -21,7 +21,7 @@ import {pluralize} from 'lib/strings/helpers' import {useStores} from 'state/index' import {PostMeta} from '../util/PostMeta' import {PostEmbeds} from '../util/post-embeds' -import {PostCtrls} from '../util/PostCtrls' +import {PostCtrls} from '../util/post-ctrls/PostCtrls' import {PostHider} from '../util/moderation/PostHider' import {ContentHider} from '../util/moderation/ContentHider' import {ImageHider} from '../util/moderation/ImageHider' |