Skip to content

Commit

Permalink
api
Browse files Browse the repository at this point in the history
  • Loading branch information
sedghi committed Feb 15, 2024
1 parent afbe99d commit cbca833
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
} from '../stateManagement/annotation/annotationState';
import { setAnnotationSelected } from '../stateManagement/annotation/annotationSelection';

class EraserTool extends BaseTool {
class AnnotationEraserTool extends BaseTool {
static toolName;
constructor(
toolProps: PublicToolProps = {},
Expand Down Expand Up @@ -92,5 +92,5 @@ class EraserTool extends BaseTool {
}
}

EraserTool.toolName = 'Eraser';
export default EraserTool;
AnnotationEraserTool.toolName = 'Eraser';
export default AnnotationEraserTool;
4 changes: 2 additions & 2 deletions packages/tools/src/tools/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import AngleTool from './annotation/AngleTool';
import CobbAngleTool from './annotation/CobbAngleTool';
import UltrasoundDirectionalTool from './annotation/UltrasoundDirectionalTool';
import KeyImageTool from './annotation/KeyImageTool';
import EraserTool from './EraserTool';
import AnnotationEraserTool from './AnnotationEraserTool';

// Segmentation DisplayTool
import SegmentationDisplayTool from './displayTools/SegmentationDisplayTool';
Expand Down Expand Up @@ -91,7 +91,7 @@ export {
CobbAngleTool,
UltrasoundDirectionalTool,
KeyImageTool,
EraserTool,
AnnotationEraserTool as EraserTool,
// Segmentations Display
SegmentationDisplayTool,
// Segmentations Tools
Expand Down

0 comments on commit cbca833

Please sign in to comment.