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.
40 lines
981 B
40 lines
981 B
4 years ago
|
<template>
|
||
|
<v-tabs class="h-100" color="x-active">
|
||
|
<v-tab><span class="caption text-capitalize">Audit Logs</span></v-tab>
|
||
|
<v-tab-item class="h-100">
|
||
|
<audit :nodes="nodes"></audit>
|
||
|
</v-tab-item>
|
||
|
|
||
|
<v-tab><span class="caption text-capitalize">SQL Migrations</span></v-tab>
|
||
|
<v-tab-item>
|
||
|
<sql-log-and-output>
|
||
|
<db :nodes="nodes"/>
|
||
|
</sql-log-and-output>
|
||
|
</v-tab-item>
|
||
|
</v-tabs>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import SqlLogAndOutput from "~/components/project/sqlLogAndOutput";
|
||
|
import Audit from "~/components/project/auditTab/audit";
|
||
|
import AuditCE from "~/components/project/auditTab/auditCE";
|
||
|
import Db from "@/components/project/auditTab/db";
|
||
|
|
||
|
export default {
|
||
|
name: "auditTab",
|
||
|
components: {Db, Audit:(process.env.EE ? Audit : AuditCE), SqlLogAndOutput},
|
||
|
props: ["nodes"],
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
::v-deep{
|
||
|
.v-window{
|
||
|
height:calc(100% - 32px);
|
||
|
.v-window__container{
|
||
|
height: 100%;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</style>
|