@@ -13,7 +13,6 @@ import * as ColumnPreferences from 'lib/ColumnPreferences';
1313import ParseApp from 'lib/ParseApp' ;
1414import React from 'react' ;
1515import PropTypes from 'lib/PropTypes' ;
16- import { SpecialClasses } from 'lib/Constants' ;
1716
1817/**
1918 * DataBrowser renders the browser toolbar and data table
@@ -200,7 +199,7 @@ export default class DataBrowser extends React.Component {
200199 e . preventDefault ( ) ;
201200 break ;
202201 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)
204203 // or with ctrl/meta (excel style - move to the first visible column)
205204 this . setState ( {
206205 current : {
@@ -212,7 +211,7 @@ export default class DataBrowser extends React.Component {
212211 e . preventDefault ( ) ;
213212 break ;
214213 case 38 :
215- // Up - standalone (move to the previous row)
214+ // Up - standalone (move to the previous row)
216215 // or with ctrl/meta (excel style - move to the first row)
217216 this . setState ( {
218217 current : {
@@ -223,7 +222,7 @@ export default class DataBrowser extends React.Component {
223222 e . preventDefault ( ) ;
224223 break ;
225224 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)
227226 // or with ctrl/meta (excel style - move to the last visible column)
228227 this . setState ( {
229228 current : {
@@ -235,7 +234,7 @@ export default class DataBrowser extends React.Component {
235234 e . preventDefault ( ) ;
236235 break ;
237236 case 40 :
238- // Down - standalone (move to the next row)
237+ // Down - standalone (move to the next row)
239238 // or with ctrl/meta (excel style - move to the last row)
240239 this . setState ( {
241240 current : {
@@ -322,7 +321,7 @@ export default class DataBrowser extends React.Component {
322321 < BrowserToolbar
323322 count = { count }
324323 hidePerms = { className === '_Installation' }
325- className = { SpecialClasses [ className ] || className }
324+ className = { className }
326325 classNameForEditors = { className }
327326 setCurrent = { this . setCurrent }
328327 enableDeleteAllRows = { this . context . currentApp . serverInfo . features . schemas . clearAllDataFromClass && ! preventSchemaEdits }
0 commit comments