Skip to content

Commit 73d70af

Browse files
committed
update: add icon.
1 parent 90851aa commit 73d70af

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ coverage
55
.temp
66
dist/**
77
!dist/style.css
8+
!dist/icon/icon-ts.png

dist/icon/icon-ts.png

849 Bytes
Loading

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/client/Seed.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,9 @@ export class Seed {
6464
let name = this._name;
6565

6666
if (this._name.endsWith('.vue')) {
67-
name = `<img class="icon" src="../dist/icon/icon-vue.png" alt="">${name}`;
67+
name = `<img class="icon" src="https://v3.vuejs.org/logo.png" alt="">${name}`;
6868
} else if (this._name.endsWith('.js')) {
69-
name = `<img class="icon" src="../dist/icon/icon-js.png" alt="">${name}`;
69+
name = `<img class="icon" src="https://raw.githubusercontent.com/voodootikigod/logo.js/master/js.png" alt="">${name}`;
7070
} else if (this._name.endsWith('.ts')) {
7171
name = `<img class="icon" src="../dist/icon/icon-ts.png" alt="">${name}`;
7272
}

0 commit comments

Comments
 (0)