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]'>
|
||||
{ loading && <Loader size={6} />}
|
||||
{ !loading && parseData &&
|
||||
<ParsingResult
|
||||
<ParsingResult
|
||||
data={parseData}
|
||||
onShowAST={ast => onShowAST(value, ast)}
|
||||
onShowError={onShowError}
|
||||
/>}
|
||||
{ !loading && !parseData &&
|
||||
<input
|
||||
disabled={true}
|
||||
className='w-full h-full px-2 align-middle select-none clr-app'
|
||||
placeholder='Результаты проверки выражения'
|
||||
/>}
|
||||
</div>}
|
||||
</div>
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue
Block a user