Skip to content
538 changes: 296 additions & 242 deletions src/App.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/components/annotationSearch/AnnotationTable.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { useTable, usePagination, useRowSelect } from 'react-table';
import { Link } from 'react-router-dom';
import { FaRegEye } from 'react-icons/fa';
import { clearCarets, convertDateFormat } from '../../Utils/aid.js';
import { MAX_PORT } from '../../constants';
import {
changeActivePort,
jumpToAim,
Expand All @@ -20,6 +19,7 @@ import {
import { getSeries } from '../../services/seriesServices';

const defaultPageSize = 200;
const MAX_PORT = sessionStorage.getItem("MAX_PORT");

function Table({
columns,
Expand Down Expand Up @@ -312,7 +312,7 @@ function AnnotationTable(props) {
}
//getsingleSerie
Promise.all(promiseArr)
.then(() => {})
.then(() => { })
.catch(err => console.error(err));

//if patient doesnot exist get patient
Expand Down
Loading