File tree Expand file tree Collapse file tree 4 files changed +4
-5
lines changed Expand file tree Collapse file tree 4 files changed +4
-5
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 @@ -213,7 +213,7 @@ class Dashboard extends React.Component {
213
213
configLoadingError : error ,
214
214
configLoadingState : AsyncStatus . FAILED
215
215
} ) ;
216
- } ) ;
216
+ } )
217
217
}
218
218
219
219
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