Revert "Run eslint src --fix
"
This commit is contained in:
parent
67678c0f3a
commit
9bbdac088e
82 changed files with 342 additions and 363 deletions
|
@ -1,5 +1,5 @@
|
|||
import * as React from 'react';
|
||||
import { type IAvailableSymbol } from '../../Interfaces/IAvailableSymbol';
|
||||
import { IAvailableSymbol } from '../../Interfaces/IAvailableSymbol';
|
||||
import { TruncateString } from '../../utils/stringtools';
|
||||
|
||||
interface ISymbolsProps {
|
||||
|
@ -20,9 +20,9 @@ export function Symbols(props: ISymbolsProps): JSX.Element {
|
|||
key={componentOption.Name}
|
||||
id={componentOption.Name}
|
||||
title={componentOption.Name}
|
||||
onClick={() => { props.buttonOnClick(componentOption.Name); }}
|
||||
onClick={() => props.buttonOnClick(componentOption.Name)}
|
||||
draggable={true}
|
||||
onDragStart={(event) => { HandleDragStart(event); }}
|
||||
onDragStart={(event) => HandleDragStart(event)}
|
||||
>
|
||||
<div>
|
||||
<img
|
||||
|
@ -41,9 +41,9 @@ export function Symbols(props: ISymbolsProps): JSX.Element {
|
|||
key={componentOption.Name}
|
||||
id={componentOption.Name}
|
||||
title={componentOption.Name}
|
||||
onClick={() => { props.buttonOnClick(componentOption.Name); }}
|
||||
onClick={() => props.buttonOnClick(componentOption.Name)}
|
||||
draggable={true}
|
||||
onDragStart={(event) => { HandleDragStart(event); }}
|
||||
onDragStart={(event) => HandleDragStart(event)}
|
||||
>
|
||||
|
||||
{TruncateString(componentOption.Name, 5)}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue