Upload folder using huggingface_hub
Browse files
client/src/components/Refinity.tsx
CHANGED
|
@@ -744,6 +744,7 @@ const EditorPane: React.FC<{ source: string; initialTranslation: string; onBack:
|
|
| 744 |
const [saving, setSaving] = React.useState(false);
|
| 745 |
const [diffHtml, setDiffHtml] = React.useState<string>('');
|
| 746 |
const [showDiff, setShowDiff] = React.useState<boolean>(false);
|
|
|
|
| 747 |
const sourceRef = React.useRef<HTMLDivElement>(null);
|
| 748 |
const [textareaHeight, setTextareaHeight] = React.useState('420px');
|
| 749 |
|
|
|
|
| 744 |
const [saving, setSaving] = React.useState(false);
|
| 745 |
const [diffHtml, setDiffHtml] = React.useState<string>('');
|
| 746 |
const [showDiff, setShowDiff] = React.useState<boolean>(false);
|
| 747 |
+
const [revDownloadOpen, setRevDownloadOpen] = React.useState<boolean>(false);
|
| 748 |
const sourceRef = React.useRef<HTMLDivElement>(null);
|
| 749 |
const [textareaHeight, setTextareaHeight] = React.useState('420px');
|
| 750 |
|