mirror of
https://github.com/EnixCoda/Gitako.git
synced 2026-03-11 08:54:44 +00:00
Merge pull request #188 from Nezteb/develop
Fix small selector typo I made in DOMHelper.ts...
This commit is contained in:
commit
e4d3c1bfd6
1 changed files with 1 additions and 1 deletions
|
|
@ -7,7 +7,7 @@ import { CopyFileButton, copyFileButtonClassName } from './CopyFileButton'
|
|||
|
||||
export function resolveMeta(): Partial<MetaData> {
|
||||
const metaData = {
|
||||
userName: $('[itemprop="author"] > a[rel="author"]]', e => e.textContent?.trim()),
|
||||
userName: $('[itemprop="author"] > a[rel="author"]', e => e.textContent?.trim()),
|
||||
repoName: $('[itemprop="name"] > a[href]', e => e.textContent?.trim()),
|
||||
branchName: getCurrentBranch(true),
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue