Skip to content

Commit

Permalink
Fixed numbering (#114863)
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonStoltz authored Oct 15, 2021
1 parent a0c5c11 commit 8b70071
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ export const CurationSuggestion: React.FC = () => {
result={result}
isMetaEngine={isMetaEngine}
schemaForTypeHighlights={engine.schema}
resultPosition={index + 1}
resultPosition={index + existingCurationResults.length + 1}
/>
</EuiFlexItem>
))}
Expand All @@ -152,7 +152,7 @@ export const CurationSuggestion: React.FC = () => {
result={result}
isMetaEngine={isMetaEngine}
schemaForTypeHighlights={engine.schema}
resultPosition={index + 1}
resultPosition={index + suggestedPromotedDocuments.length + 1}
/>
</EuiFlexItem>
))}
Expand Down

0 comments on commit 8b70071

Please sign in to comment.