landscape: "DMs + Drafts" -> "My Channels"

This commit is contained in:
Matilde Park 2021-02-02 15:38:12 -05:00
parent 3fce1cdcb6
commit 378ad0690f
5 changed files with 7 additions and 7 deletions

View File

@ -63,7 +63,7 @@ const appIndex = function (apps) {
const otherIndex = function() {
const other = [];
other.push(result('DMs + Drafts', '/~landscape/home', 'home', null));
other.push(result('My Channels', '/~landscape/home', 'home', null));
other.push(result('Notifications', '/~notifications', 'inbox', null));
other.push(result('Profile and Settings', '/~profile/identity', 'profile', null));
other.push(result('Log Out', '/~/logout', 'logout', null));

View File

@ -6,7 +6,7 @@ export function getTitleFromWorkspace(
) {
switch (workspace.type) {
case "home":
return "DMs + Drafts";
return "My Channels";
case "group":
const association = associations.groups[workspace.group];
return association?.metadata?.title || "";

View File

@ -76,9 +76,9 @@ export default function LaunchApp(props) {
<Row alignItems='center'>
<Icon
color="black"
icon="Mail"
icon="Home"
/>
<Text ml="2" mt='1px' color="black">DMs + Drafts</Text>
<Text ml="2" mt='1px' color="black">My Channels</Text>
</Row>
</Box>
</Tile>

View File

@ -53,7 +53,7 @@ export class OmniboxResult extends Component {
text = text.startsWith('Profile') ? window.ship : text;
graphic = <Sigil color={color} classes='dib flex-shrink-0 v-mid mr2' ship={text} size={18} icon padded />;
} else if (icon === 'home') {
graphic = <Icon display='inline-block' verticalAlign='middle' icon='Mail' mr='2' size='18px' color={iconFill} />;
graphic = <Icon display='inline-block' verticalAlign='middle' icon='Home' mr='2' size='18px' color={iconFill} />;
} else if (icon === 'notifications') {
graphic = <Icon display='inline-block' verticalAlign='middle' icon='Inbox' mr='2' size='18px' color={iconFill} />;
} else {

View File

@ -117,9 +117,9 @@ export function GroupSwitcher(props: {
mr={2}
color="gray"
display="block"
icon="Mail"
icon="Home"
/>
<Text>DMs + Drafts</Text>
<Text>My Channels</Text>
</GroupSwitcherItem>}
<RecentGroups
recent={props.recentGroups}