Skip to content
Snippets Groups Projects

Resolve "Export graphics - add "Current view""

Merged Piotr Gawron requested to merge 327-export-graphics into development
29 files
+ 403
40
Compare changes
  • Side-by-side
  • Inline
Files
29
@@ -15,6 +15,7 @@ import { ElementSearchResultType } from '@/types/models';
import { CommentItem } from '@/components/Map/Drawer/BioEntityDrawer/Comments/CommentItem.component';
import { getTypeBySBOTerm } from '@/utils/bioEntity/getTypeBySBOTerm';
import { ModificationResidueItem } from '@/components/Map/Drawer/BioEntityDrawer/ModificationResidueItem';
import React from 'react';
import { CollapsibleSection } from '../ExportDrawer/CollapsibleSection';
import { AnnotationItem } from './AnnotationItem';
import { AssociatedSubmap } from './AssociatedSubmap';
@@ -75,7 +76,10 @@ export const BioEntityDrawer = (): React.ReactNode => {
{bioEntityData.notes && (
<span>
<hr className="border-b border-b-divide" />
<div className="text-sm font-normal">{bioEntityData.notes}</div>
<div
className="text-sm font-normal"
dangerouslySetInnerHTML={{ __html: bioEntityData.notes }}
/>
</span>
)}
{isModificationAvailable && (
Loading