Merge pull request #2046 from github/koesie10/rename-last-commit-to-last-updated

Rename "Last commit" to "Last updated"
This commit is contained in:
Koen Vlaswinkel
2023-02-07 12:15:04 +01:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -244,7 +244,7 @@ This requires running a MRVA query and seeing the results view.
1. By name
2. By results
3. By stars
4. By last commit
4. By last updated
9. Can filter repos
10. Shows correct statistics
1. Total number of results

View File

@@ -32,7 +32,7 @@ export const RepositoriesSort = ({ value, onChange, className }: Props) => {
<VSCodeOption value={SortKey.Name}>Name</VSCodeOption>
<VSCodeOption value={SortKey.ResultsCount}>Results</VSCodeOption>
<VSCodeOption value={SortKey.Stars}>Stars</VSCodeOption>
<VSCodeOption value={SortKey.LastUpdated}>Last commit</VSCodeOption>
<VSCodeOption value={SortKey.LastUpdated}>Last updated</VSCodeOption>
</Dropdown>
);
};