mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-29 13:56:33 +00:00
- Rename `Project` => `Base` - Rename `Base` => `Source` - Remove `db` from data/meta api endpoints - Add backward compatibility for old apis - Migrations for renaming table and columns Signed-off-by: Pranav C <pranavxc@gmail.com>
25 lines
622 B
Vue
25 lines
622 B
Vue
<script setup lang="ts">
|
|
import { iconMap } from '#imports'
|
|
|
|
const { isUIAllowed } = useRoles()
|
|
|
|
const { t } = useI18n()
|
|
|
|
const toggleDialog = inject(ToggleDialogInj, () => {})
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
v-if="isUIAllowed('settingsPage')"
|
|
class="flex items-center w-full pl-3 hover:(text-primary bg-primary bg-opacity-5)"
|
|
@click="toggleDialog(true, undefined, undefined, baseId)"
|
|
>
|
|
<div>
|
|
<div class="flex items-center space-x-1">
|
|
<component :is="iconMap.users" class="mr-1 nc-new-source" />
|
|
<div>{{ t('title.teamAndSettings') }}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|