Skip to content

Commit

Permalink
Export to rtf
Browse files Browse the repository at this point in the history
  • Loading branch information
vmonakhov committed Dec 18, 2023
1 parent 3f8c3d9 commit 77cbf47
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/components/SaveDictionaryModal/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,15 @@ class Properties extends React.Component {
onChange={(e, { value }) => this.setState({ f_type: value })}
/>
</div>
<div style={{ margin: "0 0 0.5em 0.5em" }} key="rtf">
<Checkbox
radio
label={this.context("RichText file")}
value="rtf"
checked={this.state.f_type === 'rtf'}
onChange={(e, { value }) => this.setState({ f_type: value })}
/>
</div>
</Modal.Content>

<Modal.Actions>
Expand Down

0 comments on commit 77cbf47

Please sign in to comment.