ohif-viewer/Packages/ohif-measurements/client/lib/getLocationLabel.js

12 lines
285 B
JavaScript

import { OHIF } from 'meteor/ohif:core';
/**
* Extensible method to translate the location and return a string containing its label
*
* @param location
* @returns string - label for the given location
*/
OHIF.measurements.getLocationLabel = location => {
return location;
};