Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.2",
"@kalimahapps/vue-icons": "^1.9.6",
"element-plus": "^2.13.5",
"oh-vue-icons": "^1.0.0-rc3",
"vue": "^3.5.29",
"vue-router": "4"
},
Expand Down Expand Up @@ -48,4 +48,4 @@
"engines": {
"node": "^20.19.0 || >=22.12.0"
}
}
}
2 changes: 1 addition & 1 deletion src/components/UninstallSection.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ const cleanupCode =
<CodeBlock :code="zypperRemove" />
</UninstallItem>

<UninstallItem icon="co-linux" name="Void Linux">
<UninstallItem icon="si-voidlinux" name="Void Linux">
<p class="instruction mb-2">Gỡ gói qua xbps:</p>
<CodeBlock :code="voidXbpsRemove" />
<p class="instruction mb-2 mt-3">
Expand Down
2 changes: 1 addition & 1 deletion src/data/installer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const distros = [
{ name: 'Arch Linux', icon: 'si-archlinux' },
{ name: 'openSUSE', icon: 'si-opensuse' },
{ name: 'NixOS', icon: 'si-nixos' },
{ name: 'Void Linux', icon: 'co-linux' },
{ name: 'Void Linux', icon: 'si-voidlinux' },
];

export type StepBlock =
Expand Down
14 changes: 6 additions & 8 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { createApp } from 'vue';
import router from './router';
import App from './App.vue';
import './assets/shared.css';
import { OhVueIcon, addIcons } from 'oh-vue-icons';
import { OhVueIcon, addIcons } from '@kalimahapps/vue-icons';
import {
SiGithub,
SiLinux,
Expand All @@ -12,11 +12,9 @@ import {
SiFedora,
SiOpensuse,
SiNixos,
CoLinux,
HiStar,
HiUsers,
HiTag,
} from 'oh-vue-icons/icons';
SiVoidlinux,
} from '@kalimahapps/vue-icons/si';
import { HiStar, HiUsers, HiTag } from '@kalimahapps/vue-icons/hi';

addIcons(
SiGithub,
Expand All @@ -27,7 +25,7 @@ addIcons(
SiFedora,
SiOpensuse,
SiNixos,
CoLinux,
SiVoidlinux,
HiStar,
HiUsers,
HiTag,
Expand All @@ -36,4 +34,4 @@ addIcons(
const app = createApp(App);
app.component('v-icon', OhVueIcon);
app.use(router);
app.mount('#app');
app.mount('#app');
Loading