Skip to content

Commit 17dc5b0

Browse files
fix: revert unwanted changes
1 parent 05bb752 commit 17dc5b0

1 file changed

Lines changed: 8 additions & 13 deletions

File tree

  • packages/number-line/configure/src

packages/number-line/configure/src/main.jsx

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ export class Main extends React.Component {
578578
placement={'right'}
579579
title={validationMessage}
580580
>
581-
<Info fontSize={'small'} color={'primary'} style={{ marginLeft: '8px' }}/>
581+
<Info fontSize={'small'} color={'primary'} style={{ marginLeft: '8px' }} />
582582
</Tooltip>
583583
}
584584
>
@@ -587,7 +587,7 @@ export class Main extends React.Component {
587587
</CardBar>
588588

589589
<div className={classes.row}>
590-
<Domain domain={graph.domain} errors={errors} onChange={(domain) => this.graphChange({ domain })}/>
590+
<Domain domain={graph.domain} errors={errors} onChange={(domain) => this.graphChange({ domain })} />
591591
</div>
592592

593593
{maxError && <div className={classes.errorText}>{maxError}</div>}
@@ -616,22 +616,17 @@ export class Main extends React.Component {
616616
/>
617617
)}
618618
<div></div>
619-
<Arrows arrows={graph.arrows} onChange={this.changeArrows}/>
619+
<Arrows arrows={graph.arrows} onChange={this.changeArrows} />
620620
</div>
621621

622622
{widthError && <div className={classes.errorText}>{widthError}</div>}
623623

624624
<NumberLineComponent
625-
onMoveElement={() => {
626-
}}
627-
onDeleteElements={() => {
628-
}}
629-
onAddElement={() => {
630-
}}
631-
onClearElements={() => {
632-
}}
633-
onUndoElement={() => {
634-
}}
625+
onMoveElement={() => {}}
626+
onDeleteElements={() => {}}
627+
onAddElement={() => {}}
628+
onClearElements={() => {}}
629+
onUndoElement={() => {}}
635630
minWidth={numberLineDimensions.min}
636631
maxWidth={numberLineDimensions.max}
637632
maxHeight={70}

0 commit comments

Comments
 (0)