This repository was archived by the owner on Feb 21, 2020. It is now read-only.
File tree 2 files changed +13
-13
lines changed
2 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -250,7 +250,7 @@ export default class NoteModal extends React.Component {
250
250
}
251
251
}
252
252
) } >
253
- < Text > < Icon name = 'md -more' style = { styles . noteDetailButton } /> </ Text >
253
+ < Text > < Icon name = 'ios -more' style = { styles . noteDetailButton } /> </ Text >
254
254
</ Button >
255
255
</ Root >
256
256
</ View >
Original file line number Diff line number Diff line change @@ -68,68 +68,68 @@ export default class NoteInputSupport extends React.Component {
68
68
</ TouchableHighlight >
69
69
< TouchableHighlight
70
70
onPress = { ( ) => {
71
- this . props . insertMarkdownBetween ( '** ' )
71
+ this . props . insertMarkdownBetween ( '- [ ] ' )
72
72
} }
73
73
style = { Styles . inputElementsStyle } >
74
74
< View >
75
75
< SvgUri
76
76
width = '17'
77
77
height = '17'
78
- source = { boldIcon }
78
+ source = { checkboxIcon }
79
79
style = { Styles . supportImage }
80
80
/>
81
81
</ View >
82
82
</ TouchableHighlight >
83
83
< TouchableHighlight
84
- onPress = { ( ) => {
85
- this . props . insertMarkdownBetween ( '_' )
86
- } }
84
+ onPress = { this . props . pasteContent . bind ( this ) }
87
85
style = { Styles . inputElementsStyle } >
88
86
< View >
89
87
< SvgUri
90
88
width = '17'
91
89
height = '17'
92
- source = { italicIcon }
90
+ source = { pasteIcon }
93
91
style = { Styles . supportImage }
94
92
/>
95
93
</ View >
96
94
</ TouchableHighlight >
97
95
< TouchableHighlight
98
96
onPress = { ( ) => {
99
- this . props . insertMarkdownBetween ( '> ' )
97
+ this . props . insertMarkdownBetween ( '** ' )
100
98
} }
101
99
style = { Styles . inputElementsStyle } >
102
100
< View >
103
101
< SvgUri
104
102
width = '17'
105
103
height = '17'
106
- source = { quoteIcon }
104
+ source = { boldIcon }
107
105
style = { Styles . supportImage }
108
106
/>
109
107
</ View >
110
108
</ TouchableHighlight >
111
109
< TouchableHighlight
112
110
onPress = { ( ) => {
113
- this . props . insertMarkdownBetween ( '- [ ] ' )
111
+ this . props . insertMarkdownBetween ( '> ' )
114
112
} }
115
113
style = { Styles . inputElementsStyle } >
116
114
< View >
117
115
< SvgUri
118
116
width = '17'
119
117
height = '17'
120
- source = { checkboxIcon }
118
+ source = { quoteIcon }
121
119
style = { Styles . supportImage }
122
120
/>
123
121
</ View >
124
122
</ TouchableHighlight >
125
123
< TouchableHighlight
126
- onPress = { this . props . pasteContent . bind ( this ) }
124
+ onPress = { ( ) => {
125
+ this . props . insertMarkdownBetween ( '_' )
126
+ } }
127
127
style = { Styles . inputElementsStyle } >
128
128
< View >
129
129
< SvgUri
130
130
width = '17'
131
131
height = '17'
132
- source = { pasteIcon }
132
+ source = { italicIcon }
133
133
style = { Styles . supportImage }
134
134
/>
135
135
</ View >
You can’t perform that action at this time.
0 commit comments