Skip to content

Commit

Permalink
🍺 output jp
Browse files Browse the repository at this point in the history
  • Loading branch information
akameco committed Sep 2, 2016
1 parent 7f5ee4d commit 38cf4f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/components/modal/select-column-modal.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ export default class SelectColumnModal extends Component {
}

handleAddFavorite = (publicity: 'private' | 'public') => {
this.props.onSelect({type: 'favoriteWorks', opts: {publicity, page: 1}}, `favorite/${publicity}`);
const title = {private: '非公開ブックマーク', public: '公開ブックマーク'}[publicity];
this.props.onSelect({type: 'favoriteWorks', opts: {publicity, page: 1}}, title);
}

handleAddHistory = () => {
Expand Down

0 comments on commit 38cf4f0

Please sign in to comment.