mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-05 01:47:04 +00:00
refactor(gui): linting
Signed-off-by: Pranav C <61551451+pranavxc@users.noreply.github.com>
This commit is contained in:
@@ -2,35 +2,35 @@
|
||||
<div class="h-100">
|
||||
<div class="h-100" style="width: 100%">
|
||||
<v-tabs height="30" color="x-active">
|
||||
<v-tab
|
||||
><span class="caption text-capitalize">
|
||||
<v-tab>
|
||||
<span class="caption text-capitalize">
|
||||
<!-- Users Management -->
|
||||
{{ $t('management.tabs.user') }}
|
||||
</span></v-tab
|
||||
>
|
||||
</span>
|
||||
</v-tab>
|
||||
<v-tab-item class="h-100">
|
||||
<user-management :nodes="nodes"></user-management>
|
||||
<user-management :nodes="nodes" />
|
||||
</v-tab-item>
|
||||
|
||||
<template v-if="_isUIAllowed('apiTokenTab')">
|
||||
<v-tab
|
||||
><span class="caption text-capitalize">
|
||||
<v-tab>
|
||||
<span class="caption text-capitalize">
|
||||
<!-- API Tokens Management -->
|
||||
{{ $t('management.tabs.api') }}
|
||||
</span></v-tab
|
||||
>
|
||||
</span>
|
||||
</v-tab>
|
||||
<v-tab-item>
|
||||
<api-tokens :nodes="nodes"></api-tokens>
|
||||
<api-tokens :nodes="nodes" />
|
||||
</v-tab-item>
|
||||
</template>
|
||||
<v-tab
|
||||
><span class="caption text-capitalize">
|
||||
<v-tab>
|
||||
<span class="caption text-capitalize">
|
||||
<!-- Roles Management -->
|
||||
{{ $t('management.tabs.roles') }}
|
||||
</span></v-tab
|
||||
>
|
||||
</span>
|
||||
</v-tab>
|
||||
<v-tab-item>
|
||||
<roles :nodes="nodes"></roles>
|
||||
<roles :nodes="nodes" />
|
||||
</v-tab-item>
|
||||
<!-- <v-tab><span class="caption text-capitalize">Auth Management</span></v-tab>
|
||||
<v-tab-item>
|
||||
@@ -42,22 +42,20 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import DlgLabelSubmitCancel from '@/components/utils/dlgLabelSubmitCancel';
|
||||
import UserManagement from '@/components/auth/userManagement';
|
||||
import Roles from '@/components/auth/roles';
|
||||
import AuthHooks from '@/components/auth/authHooks';
|
||||
import ApiTokens from '@/components/auth/apiTokens';
|
||||
import UserManagement from '@/components/auth/userManagement'
|
||||
import Roles from '@/components/auth/roles'
|
||||
import ApiTokens from '@/components/auth/apiTokens'
|
||||
|
||||
export default {
|
||||
components: { ApiTokens, AuthHooks, Roles, UserManagement, DlgLabelSubmitCancel },
|
||||
name: 'AuthTab',
|
||||
components: { ApiTokens, Roles, UserManagement },
|
||||
props: ['nodes'],
|
||||
name: 'auth-tab',
|
||||
data: () => ({
|
||||
showConfirmDlg: false,
|
||||
showConfirmDlg: false
|
||||
}),
|
||||
async created() {},
|
||||
methods: {},
|
||||
};
|
||||
async created () {},
|
||||
methods: {}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
|
||||
Reference in New Issue
Block a user