• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

vanvalenlab / deepcell-label / 4930566609

pending completion
4930566609

Pull #461

github

GitHub
Merge a5131932f into 18db3ee56
Pull Request #461: Celltype UI toolbar with new toggles

464 of 1193 branches covered (38.89%)

Branch coverage included in aggregate %.

17 of 36 new or added lines in 7 files covered. (47.22%)

1 existing line in 1 file now uncovered.

3212 of 5468 relevant lines covered (58.74%)

535.59 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

75.0
/frontend/src/Project/EditControls/CellTypeControls/CellTypeUI/ToolBar/OpenMarkerPanel.js
1
import TableChartTwoToneIcon from '@mui/icons-material/TableChartTwoTone';
2
import { IconButton, Tooltip } from '@mui/material';
3
import { useState } from 'react';
4
import MarkerPanelModal from '../MarkerPanelModal';
5

6
function OpenMarkerPanel() {
7
  const [panelOpen, setPanelOpen] = useState(false);
30✔
8

9
  const handlePanelModal = () => {
30✔
NEW
10
    setPanelOpen(true);
×
11
  };
12

13
  return (
30✔
14
    <>
15
      <Tooltip title='Marker Panel'>
16
        <IconButton
17
          color='primary'
18
          sx={{ width: '100%', borderRadius: 1 }}
19
          onClick={handlePanelModal}
20
        >
21
          <TableChartTwoToneIcon />
22
        </IconButton>
23
      </Tooltip>
24
      <MarkerPanelModal open={panelOpen} setOpen={setPanelOpen} />
25
    </>
26
  );
27
}
28

29
export default OpenMarkerPanel;
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc