Skip to content

Commit c8cd2b2

Browse files
committed
add skip values
1 parent bcbcf0b commit c8cd2b2

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2096,6 +2096,7 @@ class Browser extends DashboardView {
20962096
errorAggregatedData={this.state.errorAggregatedData}
20972097
appName={this.props.params.appId}
20982098
limit={this.state.limit}
2099+
skip={this.state.skip}
20992100
/>
21002101
<BrowserFooter
21012102
skip={this.state.skip}

src/dashboard/Data/Browser/Browser.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,9 @@ body:global(.expanded) {
123123
z-index: 1;
124124
border-bottom: 1px solid #e3e3ea;
125125
background: white;
126+
overflow: hidden;
127+
direction: rtl;
128+
text-overflow: ellipsis;
126129
}
127130

128131

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ export default class BrowserTable extends React.Component {
156156
onFilterChange={this.props.onFilterChange}
157157
order={this.props.order}
158158
readOnlyFields={READ_ONLY}
159-
row={index}
159+
row={index + this.props.skip}
160160
rowValue={this.props.data[index]}
161161
rowWidth={rowWidth}
162162
selection={this.props.selection}
@@ -329,7 +329,7 @@ export default class BrowserTable extends React.Component {
329329
callCloudFunction={this.props.callCloudFunction}
330330
order={this.props.order}
331331
readOnlyFields={READ_ONLY}
332-
row={i}
332+
row={i + this.props.skip}
333333
rowValue={this.props.data[i]}
334334
rowWidth={rowWidth}
335335
selection={this.props.selection}

0 commit comments

Comments
 (0)