Skip to content

Commit 85ac75e

Browse files
authored
Merge branch 'homolog' into homolog
2 parents a5696df + 722d4bc commit 85ac75e

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

Parse-Dashboard/app.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -180,6 +180,7 @@ module.exports = function(config, options) {
180180
res.send(`<!DOCTYPE html>
181181
<head>
182182
<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">
183184
<base href="${mountPath}"/>
184185
<script>
185186
PARSE_DASHBOARD_PATH = "${mountPath}";
@@ -205,6 +206,7 @@ module.exports = function(config, options) {
205206
res.send(`<!DOCTYPE html>
206207
<head>
207208
<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">
208210
<base href="${mountPath}"/>
209211
<script>
210212
PARSE_DASHBOARD_PATH = "${mountPath}";

src/components/back4App/Header/Header.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ let Header = props => (
4141

4242
<Media query="(min-width: 1100px)">
4343
<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>
4545
<Button color="green" weight="700" url="https://dashboard.back4app.com/apps/#!/apps/new">NEW APP</Button>
4646
</div>
4747
</Media>

src/dashboard/Dashboard.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ class Dashboard extends React.Component {
213213
configLoadingError: error,
214214
configLoadingState: AsyncStatus.FAILED
215215
});
216-
});
216+
})
217217
}
218218

219219
render() {

src/dashboard/Data/Browser/BrowserTable.react.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -292,9 +292,6 @@ export default class BrowserTable extends React.Component {
292292
{rows}
293293
<div style={{ height: Math.max(0, (this.props.data.length - this.state.offset - MAX_ROWS) * ROW_HEIGHT) }} />
294294
{addRow}
295-
<div className={styles.rowsHolder} style={{ top: Math.max(0, this.state.offset * ROW_HEIGHT) }}>
296-
{rows}
297-
</div>
298295
{editor}
299296
</div>
300297
);

0 commit comments

Comments
 (0)