mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-28 01:25:39 -05:00
sqlAssessment sync display fix (#14574)
* sqlAssessment sync display fix * making append data Thenable<void>
This commit is contained in:
@@ -47,7 +47,7 @@ export async function readHistoryFileNames(targetName: string): Promise<TargetWi
|
||||
};
|
||||
|
||||
const datePart = `_${targetFile.split('_')[1]}`;
|
||||
result.children.push(...files.filter(f => f.endsWith(datePart)));
|
||||
result.children.push(...files.filter(f => f.endsWith(datePart) && f !== targetFile));
|
||||
result.children = result.children.map(c => path.join(dirPath, c));
|
||||
|
||||
return result;
|
||||
|
||||
Reference in New Issue
Block a user