Skip to content

Commit 20a8e2d

Browse files
committed
fix: logo css
1 parent 341943b commit 20a8e2d

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

src/assets/images/logo.png

3.38 KB
Loading

src/components/AppHeader.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
<div class="logo">
55
<img
66
alt="logo"
7-
src="https://raw.githubusercontent.com/vueComponent/ant-design/master/logo.png"
7+
width=40
8+
height=40
9+
src="../assets/images/logo.png"
810
/>
911
<h1>
1012
Issue Helper

src/components/BugReport.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ const BugReportForm = {
9494
9595
${content}
9696
`;
97-
const withMarker = `${withConfirm}\n\n<!-- generated by ant-design-issue-helper. DO NOT REMOVE -->`;
97+
const withMarker = `${withConfirm}\n\n<!-- generated by vue-antd-issue-helper. DO NOT REMOVE -->`;
9898
const body = encodeURIComponent(withMarker).replace(/%2B/gi, '+');
9999
const label = issueType === 'feature' ? '&labels=Feature%20Request' : '';
100100
window.open(

src/i18n/locales/en.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export default {
22
"intro.modal": "the reason behind our strict policy issue",
3-
"issue.environmentHelp": "os version, browser version, react-native version...",
3+
"issue.environmentHelp": "os version, browser version, Vue version...",
44
"issue.create": "Create",
55
"issue.environment": "Environment",
66
"issue.actually": "What is actually happening?",

src/i18n/locales/zh.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
export default {
22
"intro.modal": "为什么要有这么严格的 issue 规定",
3-
"issue.environmentHelp": "系统版本、浏览器版本、 react-native 版本等等信息",
3+
"issue.environmentHelp": "系统版本、浏览器版本、 Vue版本等等信息",
44
"issue.create": "创建",
55
"issue.environment": "环境",
66
"issue.actually": "实际的结果是什么?",

0 commit comments

Comments
 (0)