diff --git a/src/client/components/facet_results/ApexChart.js b/src/client/components/facet_results/ApexChart.js
index 4e988401fe55d22bf8448ea194f0002962b4f321..32b24c5a498f02403696b710541e5aaa2f9c5972 100644
--- a/src/client/components/facet_results/ApexChart.js
+++ b/src/client/components/facet_results/ApexChart.js
@@ -43,7 +43,8 @@ class ApexChart extends React.Component {
       resultClass: this.state.resultClass,
       facetClass: this.props.facetClass,
       facetID: this.props.facetID,
-      uri: this.props.uri
+      uri: this.props.uri,
+      clearTableData: false
     })
   }
 
@@ -57,14 +58,16 @@ class ApexChart extends React.Component {
       this.props.fetchData({
         resultClass: this.state.resultClass,
         facetClass: this.props.facetClass,
-        facetID: this.props.facetID
+        facetID: this.props.facetID,
+        clearTableData: false
       })
     }
     if (prevState.resultClass !== this.state.resultClass) {
       this.props.fetchData({
         resultClass: this.state.resultClass,
         facetClass: this.props.facetClass,
-        facetID: this.props.facetID
+        facetID: this.props.facetID,
+        clearTableData: false
       })
     }
     if (prevState.chartType !== this.state.chartType) {
diff --git a/src/client/components/main_layout/InstanceHomePageTable.js b/src/client/components/main_layout/InstanceHomePageTable.js
index cee3e39fa7b3588c0ec3c79c6d64fe53c1d922be..2f6066f4bcbf1777112ba19f220966a55e5e5320 100644
--- a/src/client/components/main_layout/InstanceHomePageTable.js
+++ b/src/client/components/main_layout/InstanceHomePageTable.js
@@ -74,7 +74,8 @@ class InstanceHomePageTable extends React.Component {
       this.props.fetchResults({
         resultClass: this.props.resultClassVariant,
         facetClass: this.props.facetClass,
-        uri: this.props.uri
+        uri: this.props.uri,
+        clearTableData: false
       })
     }
   }
diff --git a/src/client/reducers/general/helpers.js b/src/client/reducers/general/helpers.js
index 6a54b9901360f19978b3a42c6548dcf1deaa6ea9..424c45eb34013e61954ca88275dd1391abf69af2 100644
--- a/src/client/reducers/general/helpers.js
+++ b/src/client/reducers/general/helpers.js
@@ -2,7 +2,6 @@ import { has, isEmpty } from 'lodash'
 import { UPDATE_FACET_VALUES_CONSTRAIN_SELF } from '../../actions'
 
 export const fetchResults = (state, action) => {
-  console.log(action)
   return {
     ...state,
     instance: null,