Adjust empty query message

This commit is contained in:
Eric Kim
2021-05-21 11:43:56 -07:00
committed by Andrew Eisenberg
parent 540cb99de4
commit 5315c16338

View File

@@ -143,6 +143,6 @@ export function nextSortDirection(direction: SortDirection | undefined, includeU
export function emptyQueryResultsMessage(): JSX.Element {
return <span>
This query returned no results. If this isn&apos;t what you&apos;re expecting, and for effective query-writing tips, check out the <a href="https://codeql.github.com/docs/codeql-language-guides/">CodeQL language guides</a>.
This query returned no results. If this isn&apos;t what you were expecting, and for effective query-writing tips, check out the <a href="https://codeql.github.com/docs/codeql-language-guides/">CodeQL language guides</a>.
</span>;
}