diff --git a/superset-frontend/src/setup/setupPluginsExtra.ts b/superset-frontend/src/setup/setupPluginsExtra.ts index 905e8f795cd35..f95f284344560 100644 --- a/superset-frontend/src/setup/setupPluginsExtra.ts +++ b/superset-frontend/src/setup/setupPluginsExtra.ts @@ -16,11 +16,11 @@ * specific language governing permissions and limitations * under the License. */ -// import { getExtensionsRegistry } from '@superset-ui/core'; -// import KatalonSliceHeaderControls from 'src/katalon/KatalonSliceHeaderControls'; +import { getExtensionsRegistry } from '@superset-ui/core'; +import KatalonSliceHeaderControls from 'src/katalon/KatalonSliceHeaderControls'; // For individual deployments to add custom overrides export default function setupPluginsExtra() { - // const extensionRegistry = getExtensionsRegistry(); - // extensionRegistry.set('dashboard.slice.header', KatalonSliceHeaderControls); + const extensionRegistry = getExtensionsRegistry(); + extensionRegistry.set('dashboard.slice.header', KatalonSliceHeaderControls); }