Skip to content

Commit 66448c4

Browse files
committed
fix(logo): fix logo url;
1 parent 7c809b6 commit 66448c4

File tree

6 files changed

+4
-4
lines changed

6 files changed

+4
-4
lines changed
85.5 KB
Loading

packages/app-console/src/layout/components/Navbar.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div class="nav-leading">
44
<div class="logo">
55
<a @click="gotoSystemClient">
6-
<img src="https://docs.lafyun.com/logo.png">
6+
<img src="../../assets/logo.png">
77
</a>
88
</div>
99
<div class="title">{{ title }}</div>

packages/app-console/src/views/replicate/request.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export default {
113113
]
114114
},
115115
dialogFormVisible: false,
116-
requestType: 'target', // target | source
116+
requestType: 'target' // target | source
117117
}
118118
},
119119
created() {

packages/app-console/src/views/storage/files.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ export default {
269269
// 拼装文件下载 URL
270270
getFileUrl(file) {
271271
assert(file && file.Key, 'invalid file or filename')
272-
const url = oss.getAppFileUrl(this.bucket, file.Key, this.bucketDetail.credentials)
272+
const url = oss.getAppFileUrl(this.bucket, file.Key, this.bucketDetail.credentials)
273273
console.log('getFileURl', url)
274274
return url
275275
},
85.5 KB
Loading

packages/system-client/src/layout/components/Navbar.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div class="nav-leading">
44
<div class="logo">
55
<a href="/">
6-
<img src="https://lafjs.github.io/logo.png">
6+
<img src="../../assets/logo.png">
77
</a>
88
</div>
99
<div class="title">{{ title }}</div>

0 commit comments

Comments
 (0)