mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-04 10:27:03 +00:00
fix(nc-gui): cursor issue on workspace image
This commit is contained in:
@@ -106,7 +106,7 @@ const imageCropperData = ref({
|
||||
uploadConfig: {
|
||||
path: [NOCO, 'workspace', currentWorkspace.value?.id, 'icon'].join('/'),
|
||||
scope: PublicAttachmentScope.WORKSPACEPICS,
|
||||
maxFileSize: 2 * 1024 * 1024
|
||||
maxFileSize: 2 * 1024 * 1024,
|
||||
},
|
||||
})
|
||||
|
||||
@@ -253,7 +253,7 @@ watch(isOpen, (newValue) => {
|
||||
iconType: vIconType,
|
||||
}"
|
||||
size="xlarge"
|
||||
class="!w-full !h-full !min-w-full rounded-none select-none"
|
||||
class="!w-full !h-full !min-w-full rounded-none select-none cursor-pointer"
|
||||
/>
|
||||
</div>
|
||||
<template #overlay>
|
||||
@@ -453,6 +453,10 @@ watch(isOpen, (newValue) => {
|
||||
:deep(.ant-input::placeholder) {
|
||||
@apply text-gray-500;
|
||||
}
|
||||
|
||||
:deep(.nc-workspace-avatar img) {
|
||||
@apply !cursor-pointer;
|
||||
}
|
||||
</style>
|
||||
|
||||
<style>
|
||||
|
||||
Reference in New Issue
Block a user