reporting: anti-social option; alert emoji around urgent option (#617)
* reporting: new anti-social post report option * reporting: alarm emoji on urgent report option * reporting: appease 'make lint' I originally had text on a separate line, but that failed, so I put text+tags on a line and thought that worked, but failed again? Seems inconsistent, but trying again. * Remove emojis and increase report post height --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>zio/stable
parent
824a2313b1
commit
0a0afdf2c2
|
@ -19,7 +19,7 @@ import {usePalette} from 'lib/hooks/usePalette'
|
||||||
|
|
||||||
const DMCA_LINK = 'https://bsky.app/support/copyright'
|
const DMCA_LINK = 'https://bsky.app/support/copyright'
|
||||||
|
|
||||||
export const snapPoints = [500]
|
export const snapPoints = [550]
|
||||||
|
|
||||||
export function Component({
|
export function Component({
|
||||||
postUri,
|
postUri,
|
||||||
|
@ -72,6 +72,19 @@ export function Component({
|
||||||
</View>
|
</View>
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: ComAtprotoModerationDefs.REASONRUDE,
|
||||||
|
label: (
|
||||||
|
<View>
|
||||||
|
<Text style={pal.text} type="md-bold">
|
||||||
|
Anti-Social Behavior
|
||||||
|
</Text>
|
||||||
|
<Text style={pal.textLight}>
|
||||||
|
Harassment, trolling, or intolerance
|
||||||
|
</Text>
|
||||||
|
</View>
|
||||||
|
),
|
||||||
|
},
|
||||||
{
|
{
|
||||||
key: ComAtprotoModerationDefs.REASONVIOLATION,
|
key: ComAtprotoModerationDefs.REASONVIOLATION,
|
||||||
label: (
|
label: (
|
||||||
|
|
Loading…
Reference in New Issue