streaksheet
Advanced tools
Comparing version 0.9.2 to 0.9.3
@@ -91,8 +91,3 @@ "use strict"; | ||
var type = 'ASYNC_SECTION_END'; | ||
if (_request.type === 'RESOLVED' && !!_request.nextCursor) { | ||
type = 'ASYNC_SECTION_NON_END'; | ||
} | ||
var type = _request.nextCursor ? 'ASYNC_SECTION_NON_END' : 'ASYNC_SECTION_END'; | ||
newRowsBySection[sectionKey].push({ | ||
@@ -624,3 +619,3 @@ startIndex: _request.startIndex, | ||
if (rightShiftAmount <= 0) { | ||
return; | ||
throw new Error('rightShiftAmount should be positive'); | ||
} | ||
@@ -768,2 +763,7 @@ | ||
}); | ||
if (resolvedRequestIndex < 0) { | ||
throw new Error('Should not happen: could not find unresolvedRequest'); | ||
} | ||
startedRowsRequests.current[sectionKey][resolvedRequestIndex] = resolvedRequest; | ||
@@ -770,0 +770,0 @@ recalculateRemoteRowsBySection(); |
{ | ||
"name": "streaksheet", | ||
"version": "0.9.2", | ||
"version": "0.9.3", | ||
"author": "Chris Cowan <agentme49@gmail.com>", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
825941