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.
50 lines
1.1 KiB
50 lines
1.1 KiB
3 years ago
|
<template>
|
||
|
<v-tabs class="h-100" color="x-active">
|
||
3 years ago
|
<v-tab>
|
||
|
<span class="caption text-capitalize">
|
||
|
<!--Audit Logs-->
|
||
|
{{ $t('title.auditLogs') }}
|
||
|
</span>
|
||
|
</v-tab>
|
||
3 years ago
|
<v-tab-item class="h-100">
|
||
3 years ago
|
<audit :nodes="nodes" />
|
||
3 years ago
|
</v-tab-item>
|
||
|
|
||
3 years ago
|
<!-- <v-tab>
|
||
3 years ago
|
<span class="caption text-capitalize">
|
||
3 years ago
|
<!–SQL Migrations–>
|
||
3 years ago
|
{{ $t('title.sqlMigrations') }}
|
||
|
</span>
|
||
|
</v-tab>
|
||
3 years ago
|
<v-tab-item>
|
||
|
<sql-log-and-output>
|
||
3 years ago
|
<db :nodes="nodes" />
|
||
3 years ago
|
</sql-log-and-output>
|
||
3 years ago
|
</v-tab-item>-->
|
||
3 years ago
|
</v-tabs>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
2 years ago
|
import Db from '~/components/project/auditTab/Db';
|
||
|
import SqlLogAndOutput from '~/components/project/SqlLogAndOutput';
|
||
|
import Audit from '~/components/project/auditTab/Audit';
|
||
|
import AuditCE from '~/components/project/auditTab/AuditCE';
|
||
3 years ago
|
|
||
|
export default {
|
||
3 years ago
|
name: 'AuditTab',
|
||
2 years ago
|
components: { Db, Audit: process.env.EE ? Audit : AuditCE, SqlLogAndOutput },
|
||
|
props: ['nodes'],
|
||
|
};
|
||
3 years ago
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
2 years ago
|
::v-deep {
|
||
|
.v-window {
|
||
|
height: calc(100% - 32px);
|
||
|
.v-window__container {
|
||
3 years ago
|
height: 100%;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</style>
|