File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/dashboard/Data/Browser Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -74,14 +74,14 @@ export default class CreateClassDialog extends React.Component {
7474 showContinue = { true }
7575 onContinue = { async ( ) => {
7676 let type = this . state . type ;
77- let className = type === 'Custom' ? this . state . name : '_' + type ;
77+ let className = type === 'Custom' ? this . state . name : type ;
7878 await this . props . onConfirm ( className ) ;
7979 history . push ( `/apps/${ this . props . currentAppSlug } /browser/${ className } ` ) ;
8080 this . props . onAddColumn ( ) ;
8181 } }
8282 onConfirm = { ( ) => {
8383 let type = this . state . type ;
84- let className = type === 'Custom' ? this . state . name : '_' + type ;
84+ let className = type === 'Custom' ? this . state . name : type ;
8585 this . props . onConfirm ( className ) ;
8686 } } >
8787 { availableClasses . length > 1 ?
You can’t perform that action at this time.
0 commit comments