File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed
src/app/containers/Preferences Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 99 PaddedPreference ,
1010 Description ,
1111 Rule ,
12- Subheading ,
1312} from '../styles' ;
1413
1514type Props = {
@@ -42,7 +41,6 @@ class Prettier extends React.PureComponent {
4241 const state = this . state ;
4342 return (
4443 < Container >
45- < Subheading > Prettier</ Subheading >
4644 < PreferenceContainer >
4745 < PaddedPreference
4846 title = "Print width"
Original file line number Diff line number Diff line change 11import React from 'react' ;
22
3+ import Question from 'react-icons/lib/go/question' ;
4+
35import Prettier from './Prettier' ;
46import Title from '../MenuTitle' ;
57
68export default ( ) =>
79 < div >
8- < Title > Code Formatting</ Title >
10+ < Title >
11+ Prettier Settings{ ' ' }
12+ < a
13+ href = "https://github.com/prettier/prettier#options"
14+ target = "_blank"
15+ rel = "noopener noreferrer"
16+ >
17+ < Question style = { { marginBottom : '3px' } } />
18+ </ a >
19+ </ Title >
920
1021 < Prettier />
1122 </ div > ;
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ class Preferences extends React.PureComponent {
5858 content : < EditorSettings /> ,
5959 } ,
6060 {
61- title : 'Code Formatting ' ,
61+ title : 'Prettier Settings ' ,
6262 icon : < CodeFormatIcon /> ,
6363 content : < CodeFormatting /> ,
6464 } ,
You can’t perform that action at this time.
0 commit comments