Browse Source

fix(nc-gui)/Removed unnecassary prop from GeneralOverlay

pull/3708/head
Muhammed Mustafa 2 years ago
parent
commit
eb2d115c6c
  1. 2
      packages/nc-gui/components/general/Overlay.vue

2
packages/nc-gui/components/general/Overlay.vue

@ -11,7 +11,6 @@ interface Props {
target?: TeleportProps['to']
teleportDisabled?: TeleportProps['disabled']
transition?: boolean
className?: string
}
interface Emits {
@ -50,7 +49,6 @@ export default {
vModel ? 'opacity-100' : 'opacity-0 pointer-events-none',
inline ? 'absolute' : 'fixed',
transition ? 'transition-opacity duration-200 ease-in-out' : '',
className,
]"
class="z-100 top-0 left-0 bottom-0 right-0 bg-gray-700/75"
>

Loading…
Cancel
Save