Skip to content

Commit

Permalink
remove double borders in analyses and undo changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ashwiniHerle committed Oct 7, 2024
1 parent b1ecdd6 commit 3629693
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { Accordion, Card } from 'react-bootstrap';
import AccordionHeaderWithButtons from 'src/components/common/AccordionHeaderWithButtons';

const EditModeRow = ({ container, handleChange, element, readOnly }) => (
<Card eventKey={container.id}>
<Card eventKey={container.id} className="border-0 rounded-0">
<Card.Header className="rounded-0 p-0 border-bottom-0">
<AccordionHeaderWithButtons as="div">
<Header
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -279,6 +279,7 @@ export default class ResearchPlanDetailsContainers extends Component {
<Card
eventKey={key}
key={`research_plan_container_${container.id}`}
className="border-0 rounded-0"
>
<Card.Header className="rounded-0 p-0 border-bottom-0">
<AccordionHeaderWithButtons eventKey={key}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { observer } from 'mobx-react';
import { Button, Badge } from 'react-bootstrap';
import { StoreContext } from 'src/stores/mobx/RootStore';

function SampleTaskNavigationElement() {
const SampleTaskNavigationElement = ({}) => {
const sampleTasksStore = useContext(StoreContext).sampleTasks;

const loadSampleTasks = () => {
Expand Down

0 comments on commit 3629693

Please sign in to comment.