fix(profile.js):social_links url (#597)

* fix(profile.js):socialLinks url
This commit is contained in:
isAlive 2020-01-13 03:54:04 +08:00 committed by Ruipeng Zhang
parent 26803f3807
commit 296e4589d3
2 changed files with 6 additions and 2 deletions

6
.gitignore vendored
View File

@ -109,4 +109,8 @@ dist
_config*.yml*
yarn.lock
.idea
# Intellij Idea config file
.idea
*.ipr
*.iws
*.iml

View File

@ -119,7 +119,7 @@ module.exports = cacheComponent(Profile, 'widget.profile', props => {
}
return {
name,
url: url_for(link.name),
url: url_for(link.url),
icon: link.icon
};
});