mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2025-12-20 20:29:06 +00:00
www: edit from andreas feedback
This commit is contained in:
@@ -65,13 +65,15 @@ const ShareLink = (props: ShareLinkProps) => {
|
|||||||
{requireLogin && (
|
{requireLogin && (
|
||||||
<p className="text-sm mb-2">
|
<p className="text-sm mb-2">
|
||||||
{shareMode === "private" && (
|
{shareMode === "private" && (
|
||||||
<p>This transcript is only accessible by you.</p>
|
<p>This transcript is private and can only be accessed by you.</p>
|
||||||
)}
|
)}
|
||||||
{shareMode === "semi-private" && (
|
{shareMode === "semi-private" && (
|
||||||
<p>This transcript is accessible by any authenticated users.</p>
|
<p>
|
||||||
|
This transcript is secure. Only authenticated users can access it.
|
||||||
|
</p>
|
||||||
)}
|
)}
|
||||||
{shareMode === "public" && (
|
{shareMode === "public" && (
|
||||||
<p>This transcript is accessible by anyone.</p>
|
<p>This transcript is public. Everyone can access it.</p>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{isOwner && api && (
|
{isOwner && api && (
|
||||||
@@ -80,7 +82,7 @@ const ShareLink = (props: ShareLinkProps) => {
|
|||||||
className="select-search--top select-search"
|
className="select-search--top select-search"
|
||||||
options={[
|
options={[
|
||||||
{ name: "Private", value: "private" },
|
{ name: "Private", value: "private" },
|
||||||
{ name: "Semi-private", value: "semi-private" },
|
{ name: "Secure", value: "semi-private" },
|
||||||
{ name: "Public", value: "public" },
|
{ name: "Public", value: "public" },
|
||||||
]}
|
]}
|
||||||
value={shareMode}
|
value={shareMode}
|
||||||
@@ -94,14 +96,14 @@ const ShareLink = (props: ShareLinkProps) => {
|
|||||||
<>
|
<>
|
||||||
{privacyEnabled ? (
|
{privacyEnabled ? (
|
||||||
<p className="text-sm mb-2">
|
<p className="text-sm mb-2">
|
||||||
You can share this link with others. Anyone with the link will
|
Share this link to grant others access to this page. The link
|
||||||
have access to the page, including the full audio recording, for
|
includes the full audio recording and is valid for the next 7
|
||||||
the next 7 days.
|
days.
|
||||||
</p>
|
</p>
|
||||||
) : (
|
) : (
|
||||||
<p className="text-sm mb-2">
|
<p className="text-sm mb-2">
|
||||||
You can share this link with others. Anyone with the link will
|
Share this link to allow others to view this page and listen to
|
||||||
have access to the page, including the full audio recording.
|
the full audio recording.
|
||||||
</p>
|
</p>
|
||||||
)}
|
)}
|
||||||
</>
|
</>
|
||||||
|
|||||||
Reference in New Issue
Block a user