Skip to content

Commit e595c3a

Browse files
Merge branch 'develop' into signup-button
2 parents 2defaf8 + 137b0ec commit e595c3a

File tree

3 files changed

+16
-7
lines changed

3 files changed

+16
-7
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,14 +289,14 @@ workflows:
289289
filters:
290290
branches:
291291
only:
292-
- signup-button
292+
- free
293293
# This is beta env for production soft releases
294294
- "build-prod-beta":
295295
context : org-global
296296
filters:
297297
branches:
298298
only:
299-
- signup-button
299+
- free
300300
# This is stage env for production QA releases
301301
- "build-prod-staging":
302302
context : org-global

src/shared/components/Contentful/TracksFilter/TracksFilter.jsx

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,16 @@ export class TracksFilterInner extends Component {
5050
const { authorList } = this.state;
5151
this.setState({
5252
authorList: _.concat(authorList, _.map(
53-
_.sortBy(results.items, i => i.fields.name.toLowerCase()),
54-
item => ({ label: item.fields.name, selected: false }),
53+
_.sortBy(
54+
results.items,
55+
i => (i.fields.tcHandle
56+
? i.fields.tcHandle.toLowerCase() : i.fields.name.toLowerCase()),
57+
),
58+
item => ({
59+
label: item.fields.tcHandle
60+
? item.fields.tcHandle : item.fields.name,
61+
selected: false,
62+
}),
5563
)),
5664
});
5765
}
@@ -149,6 +157,7 @@ export class TracksFilterInner extends Component {
149157
{mediaMatches => (
150158
<Dropdown
151159
label="Authors"
160+
placeholder="Type author name or handle"
152161
options={updatedAuthorList}
153162
size="xs"
154163
onChange={(authors) => {
@@ -231,8 +240,8 @@ export class TracksFilterInner extends Component {
231240
TracksFilterInner.defaultProps = {
232241
onClose: () => {},
233242
onApply: () => {},
234-
selectedAuthor: DEF_SELECTED_AUTHOR,
235-
authorList: [{ label: DEF_SELECTED_AUTHOR, selected: true }],
243+
selectedAuthor: '',
244+
authorList: [{ label: DEF_SELECTED_AUTHOR, selected: false }],
236245
startDate: moment('2001-01-02'),
237246
endDate: moment(),
238247
tags: [],

src/shared/components/Gigs/GigDetails/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ export default function GigDetails(props) {
116116
</div>
117117
<div styleName="content">
118118
<div styleName="left">
119-
<h4>Skills</h4>
119+
<h4>Required Skills</h4>
120120
<p styleName="skills"><img src={iconSkills} alt="skills-icon" /> {skills}</p>
121121
<h4>Description</h4>
122122
<p>{ReactHtmlParser(job.job_description_text, ReactHtmlParserOptions)}

0 commit comments

Comments
 (0)