webpack/scenes/Subscriptions/index.js in katello-3.15.0.rc1.3 vs webpack/scenes/Subscriptions/index.js in katello-3.15.0.rc2
- old
+ new
@@ -9,13 +9,12 @@
import {
selectSubscriptionsState,
selectSearchQuery,
selectDeleteModalOpened,
- selectTaskModalOpened,
selectDeleteButtonDisabled,
- selectSubscriptionsTasks,
+ selectSubscriptionsTask,
selectActivePermissions,
selectTableSettings,
} from './SubscriptionsSelectors';
import { selectSimpleContentAccessEnabled } from '../Organizations/OrganizationSelectors';
@@ -31,16 +30,14 @@
return {
subscriptions,
subscriptionTableSettings,
activePermissions: selectActivePermissions(state),
simpleContentAccess: selectSimpleContentAccessEnabled(state),
- tasks: selectSubscriptionsTasks(state),
+ task: selectSubscriptionsTask(state),
searchQuery: selectSearchQuery(state),
deleteModalOpened: selectDeleteModalOpened(state),
- taskModalOpened: selectTaskModalOpened(state),
deleteButtonDisabled: selectDeleteButtonDisabled(state),
organization: state.katello.organization,
- taskDetails: state.katello.manifestHistory.taskDetails,
};
};
// map action dispatchers to props
const actions = {