Fix output params
[sdc/sdc-workflow-designer.git] / workflow-designer-ui / src / main / frontend / src / features / workflow / overview / OverviewView.jsx
index 3166cad..2c74661 100644 (file)
@@ -5,9 +5,9 @@
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
- *      http://www.apache.org/licenses/LICENSE-2.0
+*      http://www.apache.org/licenses/LICENSE-2.0
 *
- * Unless required by applicable law or agreed to in writing, software
+* Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
@@ -25,7 +25,6 @@ class OverviewView extends Component {
     static propTypes = {
         getOverview: PropTypes.func,
         versions: PropTypes.array,
-        onSelectVersion: PropTypes.func,
         onCreateVersion: PropTypes.func,
         selectedVersion: PropTypes.string,
         workflow: PropTypes.object,
@@ -53,8 +52,7 @@ class OverviewView extends Component {
     }
 
     onSelectVersionFromTable = data => {
-        const { onSelectVersion, history, workflow } = this.props;
-        onSelectVersion({ workflowId: workflow.id, versionId: data.id });
+        const { history, workflow } = this.props;
         history.push('/workflow/' + workflow.id + '/version/' + data.id);
     };
 
@@ -120,7 +118,6 @@ class OverviewView extends Component {
 OverviewView.defaultProps = {
     versions: [],
     getOverview: () => {},
-    onSelectVersion: () => {},
     selectedVersion: ''
 };