Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -806,7 +806,8 @@
"speaker_created": "Speaker created successfully.",
"company": "Company",
"phone_number": "Phone #",
"copy_email": "Copy Email"
"copy_email": "Copy Email",
"disclaimer": "All information on this page — bio, photos, affiliations, company, title, social links, etc. — <strong>except email and phone number</strong> — is considered public information and may be published or displayed by any show on the platform."
},
"merge_speakers": {
"merge_speakers": "Merge Speakers",
Expand Down
2 changes: 2 additions & 0 deletions src/pages/speakers/edit-summit-speaker-page.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import React from "react";
import { connect } from "react-redux";
import T from "i18n-react/dist/i18n-react";
import { Breadcrumb } from "react-breadcrumbs";
import CustomAlert from "openstack-uicore-foundation/lib/components/mui/custom-alert";
import SpeakerForm from "../../components/forms/speaker-form";
import {
getSpeaker,
Expand Down Expand Up @@ -85,6 +86,7 @@ class EditSummitSpeakerPage extends React.Component {
<AddNewButton entity={entity} />
</h3>
<hr />
<CustomAlert message={T.translate("edit_speaker.disclaimer")} />
<SpeakerForm
summits={summits}
history={history}
Expand Down
Loading