File tree 1 file changed +6
-5
lines changed
packages/@vuepress/theme-default/components
1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 12
12
</footer >
13
13
</template >
14
14
<script >
15
+ import isNil from ' lodash/isNil'
15
16
import { endingSlashRE , outboundRE } from ' ../util'
16
17
17
18
export default {
@@ -32,18 +33,18 @@ export default {
32
33
},
33
34
34
35
editLink () {
35
- if (this .$page .frontmatter .editLink === false ) {
36
- return
37
- }
36
+ const showEditLink = isNil (this .$page .frontmatter .editLink )
37
+ ? this .$site .themeConfig .editLinks
38
+ : this .$page .frontmatter .editLink
39
+
38
40
const {
39
41
repo ,
40
- editLinks ,
41
42
docsDir = ' ' ,
42
43
docsBranch = ' master' ,
43
44
docsRepo = repo
44
45
} = this .$site .themeConfig
45
46
46
- if (docsRepo && editLinks && this .$page .relativePath ) {
47
+ if (showEditLink && docsRepo && this .$page .relativePath ) {
47
48
return this .createEditLink (
48
49
repo,
49
50
docsRepo,
You can’t perform that action at this time.
0 commit comments