Skip to content

Commit 8503184

Browse files
committed
fix: small issues
1 parent 68c9769 commit 8503184

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/components/compare/compare.operations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ async function compareCurrentApiType(
282282
const { operations: prevOperationsWithData = [] } = await versionOperationsResolver(apiType, prevVersion, prevPackageId, previousBatch) || {}
283283
const { operations: currOperationsWithData = [] } = await versionOperationsResolver(apiType, currVersion, currPackageId, currentBatch) || {}
284284

285-
const operationsMap = createPairOperationsMap(currGroupSlug, prevGroupSlug, currOperationsWithData, prevOperationsWithData)
285+
const operationsMap = createPairOperationsMap(currGroupSlug, prevGroupSlug, currOperationsWithData, prevOperationsWithData, apiBuilder)
286286

287287
// compare Operations Data
288288
for (const operationId of Object.keys(operationsMap)) {

src/utils/document.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ createSlug.extend({ '_': '_' })
8888
createSlug.extend({ '.': '-' })
8989
createSlug.extend({ '(': '-' })
9090
createSlug.extend({ ')': '-' })
91-
// createSlug.extend({ '*': '*' })
9291

9392
export const findSharedPath = (fileIds: string[]): string => {
9493
if (!fileIds.length) { return '' }

0 commit comments

Comments
 (0)