File tree 4 files changed +8
-11
lines changed 4 files changed +8
-11
lines changed Original file line number Diff line number Diff line change @@ -180,6 +180,7 @@ module.exports = function(config, options) {
180
180
res . send ( `<!DOCTYPE html>
181
181
<head>
182
182
<link rel="shortcut icon" type="image/x-icon" href="${ mountPath } favicon.ico" />
183
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
183
184
<base href="${ mountPath } "/>
184
185
<script>
185
186
PARSE_DASHBOARD_PATH = "${ mountPath } ";
@@ -205,6 +206,7 @@ module.exports = function(config, options) {
205
206
res . send ( `<!DOCTYPE html>
206
207
<head>
207
208
<link rel="shortcut icon" type="image/x-icon" href="${ mountPath } favicon.ico" />
209
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
208
210
<base href="${ mountPath } "/>
209
211
<script>
210
212
PARSE_DASHBOARD_PATH = "${ mountPath } ";
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ let Header = props => (
41
41
42
42
< Media query = "(min-width: 1100px)" >
43
43
< div className = "ml-auto" >
44
- < Dropdown items = { navData . dropdownItems } > Hello, TBrayner !< i className = "dropdown-icon zmdi zmdi-caret-down" > </ i > </ Dropdown >
44
+ < Dropdown items = { navData . dropdownItems } > Hello, User !< i className = "dropdown-icon zmdi zmdi-caret-down" > </ i > </ Dropdown >
45
45
< Button color = "green" weight = "700" url = "https://dashboard.back4app.com/apps/#!/apps/new" > NEW APP</ Button >
46
46
</ div >
47
47
</ Media >
Original file line number Diff line number Diff line change @@ -196,19 +196,17 @@ class Dashboard extends React.Component {
196
196
}
197
197
} ) ;
198
198
return Parse . Promise . when ( appInfoPromises ) ;
199
- } ) . then ( function ( resolvedApps ) {
200
- if ( resolvedApps && resolvedApps . length ) {
201
- resolvedApps . forEach ( app => {
202
- AppsManager . addApp ( app ) ;
203
- } ) ;
204
- }
199
+ } ) . then ( function ( ) {
200
+ Array . prototype . slice . call ( arguments ) . forEach ( app => {
201
+ AppsManager . addApp ( app ) ;
202
+ } ) ;
205
203
this . setState ( { configLoadingState : AsyncStatus . SUCCESS } ) ;
206
204
} . bind ( this ) ) . fail ( ( { error } ) => {
207
205
this . setState ( {
208
206
configLoadingError : error ,
209
207
configLoadingState : AsyncStatus . FAILED
210
208
} ) ;
211
- } ) ;
209
+ } )
212
210
}
213
211
214
212
render ( ) {
Original file line number Diff line number Diff line change @@ -292,9 +292,6 @@ export default class BrowserTable extends React.Component {
292
292
{ rows }
293
293
< div style = { { height : Math . max ( 0 , ( this . props . data . length - this . state . offset - MAX_ROWS ) * ROW_HEIGHT ) } } />
294
294
{ addRow }
295
- < div className = { styles . rowsHolder } style = { { top : Math . max ( 0 , this . state . offset * ROW_HEIGHT ) } } >
296
- { rows }
297
- </ div >
298
295
{ editor }
299
296
</ div >
300
297
) ;
You can’t perform that action at this time.
0 commit comments