This commit is contained in:
Claudio Maggioni 2020-05-02 20:50:34 +02:00
parent 091ab50c0e
commit a6fbd1a5d2

View File

@ -114,7 +114,7 @@ class Dashboard extends Component {
/>
<Menu.Item
name="Hosts"
content="Hosts"
content="Hosts and Guests"
active={this.activeTab === "Hosts"}
onClick={this.selectTab}
/>
@ -170,7 +170,9 @@ class Dashboard extends Component {
name="Hosts"
content="Hosts"
active={this.activeTab === "Hosts"}
color={this.activeTab === "Hosts" ? "yellow" : "grey"}
color={
this.activeTab === "Hosts and Guests" ? "yellow" : "grey"
}
onClick={this.selectTab}
/>
</Grid.Column>