Revert "Run eslint src --fix"

This commit is contained in:
Eric Nguyen 2023-02-17 09:34:48 +00:00
parent 67678c0f3a
commit 9bbdac088e
82 changed files with 342 additions and 363 deletions

View file

@ -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)}