From 8a232908ae1bcbcc9454d61954da78509f66bf08 Mon Sep 17 00:00:00 2001 From: afc163 Date: Sun, 7 Jan 2018 16:40:04 +0800 Subject: [PATCH] Fix footer key --- src/layouts/UserLayout.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/layouts/UserLayout.js b/src/layouts/UserLayout.js index 8402341e..7bc23864 100644 --- a/src/layouts/UserLayout.js +++ b/src/layouts/UserLayout.js @@ -8,14 +8,15 @@ import logo from '../assets/logo.svg'; import { getRoutes } from '../utils/utils'; const links = [{ + key: 'help', title: '帮助', href: '', }, { - key: '隐私', + key: 'privacy', title: '隐私', href: '', }, { - key: '隐私', + key: 'terms', title: '条款', href: '', }]; -- GitLab