Nick Heiner
Nick Heiner
Thanks for those details. It's a blank `mailto:`? The expectation is that the user will know who to email?
@erincd I see that the spec for adding a new location or user does not match exactly what you'd see on `location/new` or `people/new`. Is it ok if we just...
To be clear, this generates an email to the super user requesting that they add the info, right? And then the super user is supposed to copy / paste the...
@hunterp [says that I shouldn't work on this now](https://defensedigitalservice.slack.com/archives/anet-friends/p1489435791018869), so I'm unassigning myself.
Ok, so no modals, and it's just a `mailto:`. > it will open a blank mailto:, including the information (from the modal designs) that the advisor should fill out. Is...
[Slack conversation](https://defensedigitalservice.slack.com/archives/anet-friends/p1488406858000635)
Relevant code snippet in `Page`: ```js componentWillReceiveProps(props, nextContext) { if (props !== this.props) { this.loadData(props) } else if (this.context && (this.context !== nextContext)) { this.loadData(props) } } componentDidMount() { setMessages(this.props,...
@erincd if we are behind schedule, you may wish to cut this one. It's annoying to us devs that it happens, and it may make the end-user experience a bit...
Perhaps related: I don't think this syntax error is valid: ``` echo '{ "foo": "bar" }{ "foo": "odp"}' | json --merge json: error: input is not JSON: Syntax error at...
I was able to solve this by passing a custom parser, as noted in the README: ```js module.exports.parser = { parse: function(source) { // My addition: return babel.parseSync(source, {fileName: 'fake-filename',...