fix(ui): use correct modals-modal component for Shortcuts modal

This commit is contained in:
Tiberiu Ichim 2026-02-22 08:26:54 +02:00
parent d7a2f4a515
commit fe3638548d

View file

@ -1,6 +1,12 @@
<template> <template>
<ui-modal v-model="show" :width="600" title="Keyboard Shortcuts" @close="close"> <modals-modal v-model="show" name="shortcuts" :width="600">
<div class="p-6 text-sm text-gray-200"> <template #outer>
<div class="absolute top-0 left-0 p-5 w-2/3 overflow-hidden">
<p class="text-3xl text-white truncate">Keyboard Shortcuts</p>
</div>
</template>
<div class="px-6 py-6 w-full text-sm rounded-lg bg-bg shadow-lg border border-black-300 overflow-y-auto overflow-x-hidden" style="max-height: 80vh">
<div class="text-sm text-gray-200">
<div v-for="(section, index) in shortcutSections" :key="index" class="mb-6 last:mb-0"> <div v-for="(section, index) in shortcutSections" :key="index" class="mb-6 last:mb-0">
<h3 class="text-lg font-semibold text-white mb-3">{{ section.title }}</h3> <h3 class="text-lg font-semibold text-white mb-3">{{ section.title }}</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-y-2 gap-x-4"> <div class="grid grid-cols-1 md:grid-cols-2 gap-y-2 gap-x-4">
@ -15,10 +21,11 @@
</div> </div>
</div> </div>
</div> </div>
<div class="flex justify-end p-4 border-t border-white/10"> <div class="flex justify-end pt-4 border-t border-white/10 mt-4">
<ui-btn @click="close">Close</ui-btn> <ui-btn @click="close">Close</ui-btn>
</div> </div>
</ui-modal> </div>
</modals-modal>
</template> </template>
<script> <script>