mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
686 B
20 lines
686 B
<script setup lang="ts"> |
|
const emits = defineEmits(['addRow']) |
|
const { isOpen } = useSidebar({ storageKey: 'nc-right-sidebar' }) |
|
const isLocked = inject(IsLockedInj) |
|
</script> |
|
|
|
<template> |
|
<a-tooltip :placement="isOpen ? 'bottomRight' : 'left'"> |
|
<template #title> {{ $t('activity.addRow') }} </template> |
|
<div |
|
:class="{ 'hover:after:bg-primary/75 group': !isLocked, 'disabled-ring': isLocked }" |
|
class="nc-sidebar-right-item nc-sidebar-add-row" |
|
> |
|
<MdiPlusOutline |
|
:class="{ 'cursor-pointer group-hover:(!text-white)': !isLocked, 'disabled': isLocked }" |
|
@click="!isLocked ? emits('addRow') : {}" |
|
/> |
|
</div> |
|
</a-tooltip> |
|
</template>
|
|
|