diff --git a/client/scss/_select.scss b/client/scss/_select.scss index 382adf4c..b095c7b3 100644 --- a/client/scss/_select.scss +++ b/client/scss/_select.scss @@ -1,6 +1,7 @@ select { margin: 0; display: inline-block; - background: $base-color; + background: $background-color; border: 0; + color: $text-color; } diff --git a/client/src/components/ChannelSelectDropdown/index.jsx b/client/src/components/ChannelSelectDropdown/index.jsx index 2079c05c..ae4b1211 100644 --- a/client/src/components/ChannelSelectDropdown/index.jsx +++ b/client/src/components/ChannelSelectDropdown/index.jsx @@ -7,9 +7,6 @@ const ChannelSelectDropdown = ({ selectedChannel, handleSelection, loggedInChann id='channel-name-select' value={selectedChannel} onChange={handleSelection}> - { loggedInChannelName && ( - - )} diff --git a/client/src/components/PublishLicenseInput/index.jsx b/client/src/components/PublishLicenseInput/index.jsx index af827ec8..4ddf4f07 100644 --- a/client/src/components/PublishLicenseInput/index.jsx +++ b/client/src/components/PublishLicenseInput/index.jsx @@ -1,23 +1,28 @@ import React from 'react'; import RowLabeled from '@components/RowLabeled'; import Label from '@components/Label'; +import { LICENSES } from '@clientConstants/publish_license_urls'; -const PublishLicenseInput = ({ handleSelect }) => { +const PublishLicenseInput = ({ handleSelect, license }) => { return ( +