File tree Expand file tree Collapse file tree 4 files changed +3
-12
lines changed
components/engagement_edit_modals Expand file tree Collapse file tree 4 files changed +3
-12
lines changed Original file line number Diff line number Diff line change @@ -6,9 +6,7 @@ export const APP_FEATURES = {
6
6
reader : 'reader' ,
7
7
notifications : 'notifications' ,
8
8
engagementCardIcons : 'engagementCardIcons' ,
9
- resetUser : 'resetUser' ,
10
9
dashboardDateSelector : 'dashboard-date-selector' ,
11
- newDashboard : 'newDashboard' ,
12
10
engagementWriter : 'engagementWriter' ,
13
11
copyFrom : 'copyFrom'
14
12
} ;
Original file line number Diff line number Diff line change @@ -5,10 +5,8 @@ export type FeatureVersionMap = {
5
5
[ key in AppFeature ] ?: string ;
6
6
} ;
7
7
8
- export const FEATURE_VERSION_MAP : FeatureVersionMap = {
9
- resetUser : 'v1.2.50' ,
10
- newDashboard : 'v1.2.0' ,
11
- } ;
8
+ export const FEATURE_VERSION_MAP : FeatureVersionMap = { } ;
9
+
12
10
const getSemverFromVersionString = ( version : string = '' ) : string => {
13
11
return semver . clean ( version ) ;
14
12
} ;
Original file line number Diff line number Diff line change @@ -169,11 +169,7 @@ export const UserRow = ({
169
169
style = { { paddingTop : '1rem' , paddingLeft : '1.5rem' } }
170
170
>
171
171
< Tooltip
172
- content = {
173
- ! hasFeature ( APP_FEATURES . resetUser )
174
- ? 'This feature will be available soon'
175
- : 'Select users you want to reset (Active Engagements only)'
176
- }
172
+ content = { 'Select users you want to reset (Active Engagements only)' }
177
173
entryDelay = { 0 }
178
174
exitDelay = { 10 }
179
175
isContentLeftAligned = { true }
@@ -182,7 +178,6 @@ export const UserRow = ({
182
178
< Checkbox
183
179
isDisabled = {
184
180
! hasFeature ( APP_FEATURES . writer ) ||
185
- ! hasFeature ( APP_FEATURES . resetUser ) ||
186
181
isUserDeleted ||
187
182
status !== EngagementStatus . active
188
183
}
You can’t perform that action at this time.
0 commit comments