From 9640f08b8d708ae071fbf06dfc3a443734f686f1 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Mon, 4 Nov 2024 15:20:10 -0800 Subject: Modify self labels for clarity --- src/view/com/composer/labels/LabelsBtn.tsx | 38 ++++++++++++++++-------------- 1 file changed, 20 insertions(+), 18 deletions(-) (limited to 'src') diff --git a/src/view/com/composer/labels/LabelsBtn.tsx b/src/view/com/composer/labels/LabelsBtn.tsx index 75eaa33d7..174648648 100644 --- a/src/view/com/composer/labels/LabelsBtn.tsx +++ b/src/view/com/composer/labels/LabelsBtn.tsx @@ -158,22 +158,26 @@ function DialogInner({ - Porn + Adult - - {labels.includes('sexual') ? ( - Pictures meant for adults. - ) : labels.includes('nudity') ? ( - Artistic or non-erotic nudity. - ) : labels.includes('porn') ? ( - Sexual activity or erotic nudity. - ) : ( - Does not contain adult content. - )} - + {labels.includes('sexual') || + labels.includes('nudity') || + labels.includes('porn') ? ( + + {labels.includes('sexual') ? ( + Pictures meant for adults. + ) : labels.includes('nudity') ? ( + Artistic or non-erotic nudity. + ) : labels.includes('porn') ? ( + Sexual activity or erotic nudity. + ) : ( + '' + )} + + ) : null} @@ -203,16 +207,14 @@ function DialogInner({ - - {labels.includes('graphic-media') ? ( + {labels.includes('graphic-media') ? ( + Media that may be disturbing or inappropriate for some audiences. - ) : ( - Does not contain graphic or disturbing content. - )} - + + ) : null} -- cgit 1.4.1