Skip to content

Commit

Permalink
fix: run SCM actions with selected repo (#1810)
Browse files Browse the repository at this point in the history
  • Loading branch information
erha19 authored Oct 20, 2022
1 parent 19e2f33 commit 2126aa3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/main-layout/src/browser/accordion/section.view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ export const AccordionSection = ({
const viewState = useViewState(viewId, contentRef, true);
const progressService: IProgressService = useInjectable(IProgressService);
const indicator = progressService.getIndicator(viewId)!;

const Component: any = children;
return (
<div className={styles.kt_split_panel} data-view-id={viewId}>
Expand All @@ -133,7 +132,7 @@ export const AccordionSection = ({
{isIMenu(titleMenu) ? (
<InlineActionBar menus={titleMenu} context={titleMenuContext} />
) : (
<InlineMenuBar menus={titleMenu} />
<InlineMenuBar menus={titleMenu} context={titleMenuContext} />
)}
</div>
)}
Expand Down

0 comments on commit 2126aa3

Please sign in to comment.