@@ -13,7 +13,6 @@ import * as ColumnPreferences from 'lib/ColumnPreferences';
13
13
import ParseApp from 'lib/ParseApp' ;
14
14
import React from 'react' ;
15
15
import PropTypes from 'lib/PropTypes' ;
16
- import { SpecialClasses } from 'lib/Constants' ;
17
16
18
17
/**
19
18
* DataBrowser renders the browser toolbar and data table
@@ -200,7 +199,7 @@ export default class DataBrowser extends React.Component {
200
199
e . preventDefault ( ) ;
201
200
break ;
202
201
case 37 :
203
- // Left - standalone (move to the next visible column on the left)
202
+ // Left - standalone (move to the next visible column on the left)
204
203
// or with ctrl/meta (excel style - move to the first visible column)
205
204
this . setState ( {
206
205
current : {
@@ -212,7 +211,7 @@ export default class DataBrowser extends React.Component {
212
211
e . preventDefault ( ) ;
213
212
break ;
214
213
case 38 :
215
- // Up - standalone (move to the previous row)
214
+ // Up - standalone (move to the previous row)
216
215
// or with ctrl/meta (excel style - move to the first row)
217
216
this . setState ( {
218
217
current : {
@@ -223,7 +222,7 @@ export default class DataBrowser extends React.Component {
223
222
e . preventDefault ( ) ;
224
223
break ;
225
224
case 39 :
226
- // Right - standalone (move to the next visible column on the right)
225
+ // Right - standalone (move to the next visible column on the right)
227
226
// or with ctrl/meta (excel style - move to the last visible column)
228
227
this . setState ( {
229
228
current : {
@@ -235,7 +234,7 @@ export default class DataBrowser extends React.Component {
235
234
e . preventDefault ( ) ;
236
235
break ;
237
236
case 40 :
238
- // Down - standalone (move to the next row)
237
+ // Down - standalone (move to the next row)
239
238
// or with ctrl/meta (excel style - move to the last row)
240
239
this . setState ( {
241
240
current : {
@@ -322,7 +321,7 @@ export default class DataBrowser extends React.Component {
322
321
< BrowserToolbar
323
322
count = { count }
324
323
hidePerms = { className === '_Installation' }
325
- className = { SpecialClasses [ className ] || className }
324
+ className = { className }
326
325
classNameForEditors = { className }
327
326
setCurrent = { this . setCurrent }
328
327
enableDeleteAllRows = { this . context . currentApp . serverInfo . features . schemas . clearAllDataFromClass && ! preventSchemaEdits }
0 commit comments