Skip to content

Commit

Permalink
space
Browse files Browse the repository at this point in the history
  • Loading branch information
IbrahimCSAE committed Aug 16, 2024
1 parent 455b4d3 commit ea435fe
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { utils } from '@ohif/core';
* Represents a mapping utility for Livewire measurements.
*/
const LivewireContour = {
toAnnotation: measurement => {},
toAnnotation: measurement => { },

/**
* Maps cornerstone annotation event data to measurement service format.
Expand Down Expand Up @@ -142,6 +142,7 @@ function getDisplayText(annotation, displaySet, customizationService) {
const frameText = displaySet.isMultiFrame ? ` F: ${frameNumber}` : '';

const { SeriesNumber } = displaySet;

displayText.push(`S: ${SeriesNumber ?? ''}${instanceText}${frameText}`);

if (area) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { utils } from '@ohif/core';
* Represents a mapping utility for Planar Freehand ROI measurements.
*/
const PlanarFreehandROI = {
toAnnotation: measurement => {},
toAnnotation: measurement => { },

/**
* Maps cornerstone annotation event data to measurement service format.
Expand Down Expand Up @@ -149,6 +149,7 @@ function getDisplayText(annotation, displaySet, customizationService, displaySet
const frameText = displaySet.isMultiFrame ? ` F: ${frameNumber}` : '';

const { SeriesNumber } = displaySet;

displayText.push(`S: ${SeriesNumber ?? ''}${instanceText}${frameText}`);

const stats =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { utils } from '@ohif/core';
* Represents a mapping utility for Spline ROI measurements.
*/
const SplineROI = {
toAnnotation: measurement => {},
toAnnotation: measurement => { },

/**
* Maps cornerstone annotation event data to measurement service format.
Expand Down Expand Up @@ -148,6 +148,7 @@ function getDisplayText(annotation, displaySet, customizationService) {
const frameText = displaySet.isMultiFrame ? ` F: ${frameNumber}` : '';

const { SeriesNumber } = displaySet;

displayText.push(`S: ${SeriesNumber ?? ''}${instanceText}${frameText}`);

const stats = data.cachedStats[`imageId:${metadata.referencedImageId}`];
Expand Down

0 comments on commit ea435fe

Please sign in to comment.