mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 04:50:36 +03:00
Remove unused prop
This commit is contained in:
parent
edc66e5f57
commit
cf57f975f0
|
@ -220,7 +220,6 @@ function EditorConstituenta({
|
|||
toggleEditMode={() => setEditMode(EditMode.RSLANG)}
|
||||
onShowAST={onShowAST}
|
||||
onChange={newValue => setExpression(newValue)}
|
||||
setValue={setExpression}
|
||||
setTypification={setTypification}
|
||||
/>
|
||||
<ReferenceInput id='definition' label='Текстовое определение'
|
||||
|
|
|
@ -28,12 +28,11 @@ interface EditorRSExpressionProps {
|
|||
setTypification: (typificaiton: string) => void
|
||||
value: string
|
||||
onChange: (newValue: string) => void
|
||||
setValue: (expression: string) => void
|
||||
}
|
||||
|
||||
function EditorRSExpression({
|
||||
activeCst, disabled, isActive, value, onShowAST,
|
||||
toggleEditMode, setTypification, onChange, ... props
|
||||
toggleEditMode, setTypification, onChange, ...props
|
||||
}: EditorRSExpressionProps) {
|
||||
const { schema } = useRSForm();
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user