fix: wrong icon paths

This commit is contained in:
PandaDEV 2025-03-15 00:08:10 +01:00
parent e5d7bd458b
commit 3f8bfc0b91
No known key found for this signature in database
GPG key ID: 13EFF9BAF70EE75C

View file

@ -18,12 +18,9 @@
:class="{ disabled: keybind.length === 0 }"> :class="{ disabled: keybind.length === 0 }">
<p>Save</p> <p>Save</p>
<div> <div>
<img alt="" src="../public/cmd.svg" v-if="os === 'macos'" /> <IconsCmd v-if="os === 'macos'" />
<img <IconsCtrl v-if="os === 'linux' || os === 'windows'" />
alt="" <IconsEnter />
src="../public/ctrl.svg"
v-if="os === 'linux' || os === 'windows'" />
<img alt="" src="../public/enter.svg" />
</div> </div>
</div> </div>
</div> </div>