Skip to content

Commit

Permalink
Rename unlisted to profile only
Browse files Browse the repository at this point in the history
  • Loading branch information
davidar committed Aug 4, 2024
1 parent 0a00543 commit aa2c196
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/editor/metadataeditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export const MetadataEditor = () => {
}}
>
<MenuItem value={'private'}>private</MenuItem>
<MenuItem value={'unlisted'}>unlisted</MenuItem>
<MenuItem value={'unlisted'}>profile only</MenuItem>
<MenuItem value={'public'}>public</MenuItem>
</Select>
</FormControl>
Expand Down
6 changes: 5 additions & 1 deletion components/profileshaders.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,11 @@ export const ProfileShaders = props => {
<TableCell align="left">
{toDateString(row.created_at)}
</TableCell>
<TableCell align="left">{row.visibility}</TableCell>
<TableCell align="left">
{row.visibility === 'unlisted'
? 'profile only'
: row.visibility}
</TableCell>
{props.editable ? (
<TableCell align="left">
<Button
Expand Down

0 comments on commit aa2c196

Please sign in to comment.