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 {
74
74
showContinue = { true }
75
75
onContinue = { async ( ) => {
76
76
let type = this . state . type ;
77
- let className = type === 'Custom' ? this . state . name : '_' + type ;
77
+ let className = type === 'Custom' ? this . state . name : type ;
78
78
await this . props . onConfirm ( className ) ;
79
79
history . push ( `/apps/${ this . props . currentAppSlug } /browser/${ className } ` ) ;
80
80
this . props . onAddColumn ( ) ;
81
81
} }
82
82
onConfirm = { ( ) => {
83
83
let type = this . state . type ;
84
- let className = type === 'Custom' ? this . state . name : '_' + type ;
84
+ let className = type === 'Custom' ? this . state . name : type ;
85
85
this . props . onConfirm ( className ) ;
86
86
} } >
87
87
{ availableClasses . length > 1 ?
You can’t perform that action at this time.
0 commit comments