Skip to content

Commit 427452f

Browse files
Export to rtf (#1094)
Co-authored-by: nataliauvarova <[email protected]>
1 parent c3c4f64 commit 427452f

File tree

1 file changed

+9
-0
lines changed
  • src/components/SaveDictionaryModal

1 file changed

+9
-0
lines changed

src/components/SaveDictionaryModal/index.js

+9
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,15 @@ class Properties extends React.Component {
123123
onChange={(e, { value }) => this.setState({ f_type: value })}
124124
/>
125125
</div>
126+
<div style={{ margin: "0 0 0.5em 0.5em" }} key="rtf">
127+
<Checkbox
128+
radio
129+
label={this.context("RichText file")}
130+
value="rtf"
131+
checked={this.state.f_type === 'rtf'}
132+
onChange={(e, { value }) => this.setState({ f_type: value })}
133+
/>
134+
</div>
126135
</Modal.Content>
127136

128137
<Modal.Actions>

0 commit comments

Comments
 (0)