File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
static/gsApp/views/subscriptionPage/planMigrationActive Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -58,7 +58,10 @@ function formatCategoryRowString(
58
58
DATA_CATEGORY_INFO [ category ] . plural as DataCategory ,
59
59
options
60
60
) ;
61
- if ( category === DataCategoryExact . ATTACHMENT ) {
61
+ if (
62
+ category === DataCategoryExact . ATTACHMENT ||
63
+ category === DataCategoryExact . LOG_BYTE
64
+ ) {
62
65
return reservedWithUnits ;
63
66
}
64
67
@@ -113,6 +116,7 @@ function PlanMigrationRow(props: Props) {
113
116
case 'replay' :
114
117
case 'monitorSeat' :
115
118
case 'attachment' :
119
+ case 'logByte' :
116
120
case 'profileDuration' :
117
121
currentValue = formatCategoryRowString ( props . type , props . currentValue , options ) ;
118
122
nextValue = formatCategoryRowString ( props . type , props . nextValue , options ) ;
You can’t perform that action at this time.
0 commit comments