Update TrackEditor.tsx
This commit is contained in:
parent
5e8830cc15
commit
8bc83a5f18
|
@ -126,7 +126,7 @@ const TrackEditor = connect((state) => ({login: state.login}))(function TrackEdi
|
||||||
</Form.Field>
|
</Form.Field>
|
||||||
|
|
||||||
<Form.Field>
|
<Form.Field>
|
||||||
<label>Visibility</label>
|
<label>Track visibility</label>
|
||||||
<Controller
|
<Controller
|
||||||
name="public"
|
name="public"
|
||||||
control={control}
|
control={control}
|
||||||
|
@ -134,7 +134,7 @@ const TrackEditor = connect((state) => ({login: state.login}))(function TrackEdi
|
||||||
render={(props) => (
|
render={(props) => (
|
||||||
<Checkbox
|
<Checkbox
|
||||||
name="public"
|
name="public"
|
||||||
label="Make track public (in track list and details page)"
|
label="Make track public (in track list and details page, events always visible anonymously)"
|
||||||
checked={props.value}
|
checked={props.value}
|
||||||
onChange={(_, {checked}) => props.onChange(checked)}
|
onChange={(_, {checked}) => props.onChange(checked)}
|
||||||
/>
|
/>
|
||||||
|
@ -145,6 +145,11 @@ const TrackEditor = connect((state) => ({login: state.login}))(function TrackEdi
|
||||||
wide="very"
|
wide="very"
|
||||||
content={
|
content={
|
||||||
<>
|
<>
|
||||||
|
<p>
|
||||||
|
The overtaking events from all tracks are always public in an anonymized form.
|
||||||
|
This option is about publishing the FULL TRACK (where you were cycling) for
|
||||||
|
everyone to see together with your username.
|
||||||
|
</p>
|
||||||
<p>
|
<p>
|
||||||
Checking this box allows all users to see your full track. For your own privacy and security,
|
Checking this box allows all users to see your full track. For your own privacy and security,
|
||||||
make sure to only publish tracks in this way that do not let others deduce where you live, work,
|
make sure to only publish tracks in this way that do not let others deduce where you live, work,
|
||||||
|
|
Loading…
Reference in a new issue