-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
api: Send workflow item currency with subproject details #330
api: Send workflow item currency with subproject details #330
Conversation
8446edd
to
f45893d
Compare
@@ -21,7 +21,7 @@ class Identifier extends Component { | |||
helperText={this.props.nameHintText} | |||
value={this.props.name} | |||
onChange={this.props.nameOnChange} | |||
id="nameinput" | |||
dataTest="nameinput" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
leave as default but also make it configurable through props
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
@@ -30,7 +30,7 @@ class Identifier extends Component { | |||
value={this.props.comment} | |||
onChange={this.props.commentOnChange} | |||
multiline={true} | |||
id="commentinput" | |||
dataTest="commentinput" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same as above
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
@@ -369,6 +370,7 @@ const renderActionButtons = ( | |||
title={editDisabled ? "" : strings.common.edit} | |||
workflowSortEnabled={workflowSortEnabled} | |||
status={status} | |||
dataTest="edit-workflowitem" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
is it possible to pass "data-test"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const foo = ({["bar-test"]: bar}) => {
console.log(bar)
}
const props = {
"bar-test": "yesss"
};
foo(props)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
When the subproject details are fetched, the workflow item currency is now returned as well. Removed the action 'fetchWorkflowItems' as it is not used. Add E2E-test to check this bug. Closes #281
f45893d
to
00079c7
Compare
Changes
When the subproject details are fetched, the workflow item currency is
now returned as well.
Removed the action 'fetchWorkflowItems' as it is not used.
Closes #281