This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const container = compose( | |
| withStateHandlers({ errors: [] }, { | |
| setErrors: () => errors => ({ errors }), | |
| }), | |
| graphql(LOGIN_MUTATION, { | |
| props: ({ mutate, ownProps }) => ({ | |
| login: input => | |
| mutate({ | |
| variables: { | |
| input, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /client/main.js | |
| - 26 title += ": "+Settings.get("tagline"); | |
| + 26 title = Settings.get("tagline") + ' | ' + title; | |
| /lib/router/posts.js | |
| - 100 var title = Settings.get('title', 'Telescope'); | |
| - 102 var fullTitle = !!tagline ? title + ' – ' + tagline : title ; | |
| - 103 return fullTitle; | |
| + 103 return tagline; |