File tree Expand file tree Collapse file tree 2 files changed +0
-6
lines changed
packages/common/src/components Expand file tree Collapse file tree 2 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -43,10 +43,6 @@ export interface ICondaPkgDrawerProps {
4343 * Package selection handler
4444 */
4545 onPkgClick : ( pkg : Conda . IPackage ) => void ;
46- /**
47- * Package version selection handler
48- */
49- onPkgChange : ( pkg : Conda . IPackage , version : string ) => void ;
5046 /**
5147 * Callback called when packages are installed successfully
5248 */
@@ -93,7 +89,6 @@ export const CondaPkgDrawer: React.FunctionComponent<ICondaPkgDrawerProps> = (
9389 } else {
9490 setSelectedPackages ( selectedPackages . filter ( p => p !== pkg ) ) ;
9591 }
96- props . onPkgChange ( pkg , version ) ;
9792 } ;
9893
9994 const handlePackageSelection = ( pkg : Conda . IPackage ) => {
Original file line number Diff line number Diff line change @@ -491,7 +491,6 @@ export class CondaPkgPanel extends React.Component<
491491 packages = { uninstalledPkgs }
492492 isLoading = { this . state . isLoading }
493493 onPkgClick = { this . handleClick }
494- onPkgChange = { this . handleVersionSelection }
495494 onPkgGraph = { this . handleDependenciesGraph }
496495 onClose = { this . handleCloseDrawer }
497496 onPackagesInstalled = { this . handlePackagesInstalled }
You can’t perform that action at this time.
0 commit comments