mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 13:00:39 +03:00
Add missing placeholder
This commit is contained in:
parent
2691860896
commit
03ceadf361
|
@ -220,11 +220,17 @@ function EditorRSExpression({
|
||||||
<div className='w-full overflow-y-auto border mt-2 max-h-[14rem] min-h-[4.2rem]'>
|
<div className='w-full overflow-y-auto border mt-2 max-h-[14rem] min-h-[4.2rem]'>
|
||||||
{ loading && <Loader size={6} />}
|
{ loading && <Loader size={6} />}
|
||||||
{ !loading && parseData &&
|
{ !loading && parseData &&
|
||||||
<ParsingResult
|
<ParsingResult
|
||||||
data={parseData}
|
data={parseData}
|
||||||
onShowAST={ast => onShowAST(value, ast)}
|
onShowAST={ast => onShowAST(value, ast)}
|
||||||
onShowError={onShowError}
|
onShowError={onShowError}
|
||||||
/>}
|
/>}
|
||||||
|
{ !loading && !parseData &&
|
||||||
|
<input
|
||||||
|
disabled={true}
|
||||||
|
className='w-full h-full px-2 align-middle select-none clr-app'
|
||||||
|
placeholder='Результаты проверки выражения'
|
||||||
|
/>}
|
||||||
</div>}
|
</div>}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user