Correcting bug to intentionally read from cached list of projects (#16762)

* Correcting to intentionally read from cached list of projects

* using undefined for "workspace not checked yet" rather than empty array
This commit is contained in:
Benjin Dubishar
2021-08-12 17:03:06 -07:00
committed by GitHub
parent 8ae04c456d
commit c68acfde82
2 changed files with 9 additions and 4 deletions

View File

@@ -20,6 +20,7 @@ export const projectNameNull = localize('projectNameNull', "Project name is null
export const noPreviousData = (tableName: string): string => { return localize('noPreviousData', "Prior {0} for the current project will appear here, please run to see the results.", tableName); };
export const gitCloneMessage = (url: string): string => { return localize('gitCloneMessage', "Cloning git repository '{0}'...", url); };
export const gitCloneError = localize('gitCloneError', "Error during git clone. View git output for more details");
export const openedProjectsUndefinedAfterRefresh = localize('openedProjectsUndefinedAfterRefresh', "List of opened projects should not be undefined after refresh from disk.");
// UI
export const OkButtonText = localize('dataworkspace.ok', "OK");