Skip to content
Merged
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
6 changes: 4 additions & 2 deletions src/components/ChannelsDropdown.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,11 @@ export const ChannelsDropdown = () => {
style = {{ maxWidth: '400px' }}
name = "channel"
>
<option>Select Team Channel</option>
{graphData &&
<ChannelsDropdownData graphData={graphData} />
<>
<option>Select Team Channel</option>
<ChannelsDropdownData graphData={graphData} />
< />
}
</Form.Select>
</InputGroup>
Expand Down
6 changes: 4 additions & 2 deletions src/components/ChatsDropdown.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,11 @@ export const ChatsDropdown = () => {
style = {{ maxWidth: '250px' }}
name = "chat"
>
<option>Select Chat</option>
{graphData &&
<ChatsDropdownData graphData={graphData} />
<>
<option>Select Chat</option>
<ChatsDropdownData graphData={graphData} />
< />
}
</Form.Select>
</InputGroup>
Expand Down
6 changes: 4 additions & 2 deletions src/components/SharePointDropdown.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,11 @@ export const SharePointDropdown = () => {
style = {{ maxWidth: '250px' }}
name = "sharepoint"
>
<option>Select SharePoint Site</option>
{graphData &&
<SharePointDropdownData graphData={graphData} />
<>
<option>Select SharePoint Site</option>
<SharePointDropdownData graphData={graphData} />
< />
}
</Form.Select>
<Form.Control
Expand Down
6 changes: 4 additions & 2 deletions src/components/TeamsDropdown.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,11 @@ export const TeamsDropdown = () => {
style = {{ maxWidth: '250px' }}
name = "team"
>
<option>Select Team</option>
{graphData &&
<TeamsDropdownData graphData={graphData} />
<>
<option>Select Team</option>
<TeamsDropdownData graphData={graphData} />
< />
}
</Form.Select>
<Form.Control
Expand Down
Loading