Browse Source

fix: cmdL icons missing (#8594)

pull/8598/head
Anbarasu 4 months ago committed by GitHub
parent
commit
55beb0fd36
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 4
      packages/nc-gui/components/cmd-l/index.vue

4
packages/nc-gui/components/cmd-l/index.vue

@ -219,7 +219,7 @@ onMounted(() => {
</div> </div>
<div class="flex w-1/2 justify-end text-gray-600"> <div class="flex w-1/2 justify-end text-gray-600">
<div class="flex gap-2 px-2 py-1 rounded-md items-center"> <div class="flex gap-2 px-2 py-1 rounded-md items-center">
<component :is="iconMap.projectGray" class="w-3 h-3 text-transparent" /> <component :is="iconMap.project" class="w-3 h-3" />
<a-tooltip overlay-class-name="!px-2 !py-1 !rounded-lg"> <a-tooltip overlay-class-name="!px-2 !py-1 !rounded-lg">
<template #title> <template #title>
{{ cmdOption.baseName }} {{ cmdOption.baseName }}
@ -230,7 +230,7 @@ onMounted(() => {
</a-tooltip> </a-tooltip>
<span class="text-bold"> / </span> <span class="text-bold"> / </span>
<component :is="iconMap.table" class="w-3 h-3 text-transparent" /> <component :is="iconMap.table" class="w-3 h-3" />
<a-tooltip overlay-class-name="!px-2 !py-1 !rounded-lg"> <a-tooltip overlay-class-name="!px-2 !py-1 !rounded-lg">
<template #title> <template #title>
{{ cmdOption.tableName }} {{ cmdOption.tableName }}

Loading…
Cancel
Save