File tree 3 files changed +6
-2
lines changed
src/dashboard/Data/Browser 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -2096,6 +2096,7 @@ class Browser extends DashboardView {
2096
2096
errorAggregatedData = { this . state . errorAggregatedData }
2097
2097
appName = { this . props . params . appId }
2098
2098
limit = { this . state . limit }
2099
+ skip = { this . state . skip }
2099
2100
/>
2100
2101
< BrowserFooter
2101
2102
skip = { this . state . skip }
Original file line number Diff line number Diff line change @@ -123,6 +123,9 @@ body:global(.expanded) {
123
123
z-index : 1 ;
124
124
border-bottom : 1px solid #e3e3ea ;
125
125
background : white ;
126
+ overflow : hidden ;
127
+ direction : rtl ;
128
+ text-overflow : ellipsis ;
126
129
}
127
130
128
131
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ export default class BrowserTable extends React.Component {
156
156
onFilterChange = { this . props . onFilterChange }
157
157
order = { this . props . order }
158
158
readOnlyFields = { READ_ONLY }
159
- row = { index }
159
+ row = { index + this . props . skip }
160
160
rowValue = { this . props . data [ index ] }
161
161
rowWidth = { rowWidth }
162
162
selection = { this . props . selection }
@@ -329,7 +329,7 @@ export default class BrowserTable extends React.Component {
329
329
callCloudFunction = { this . props . callCloudFunction }
330
330
order = { this . props . order }
331
331
readOnlyFields = { READ_ONLY }
332
- row = { i }
332
+ row = { i + this . props . skip }
333
333
rowValue = { this . props . data [ i ] }
334
334
rowWidth = { rowWidth }
335
335
selection = { this . props . selection }
You can’t perform that action at this time.
0 commit comments