Files
nocodb/packages/nc-gui/pages/nc/view/_id.vue
Pranav C 3b05fcbc77 fix: hide csv import in sql view
Signed-off-by: Pranav C <pranavxc@gmail.com>
2021-12-10 17:19:28 +05:30

44 lines
1.1 KiB
Vue

<template>
<xc-table is-view />
</template>
<script>
import XcTable from '../../../components/project/spreadsheet/public/xcTable'
export default {
components: { XcTable },
layout: 'public',
data: () => ({
data: null
})
}
</script>
<style scoped>
</style>
<!--
/**
* @copyright Copyright (c) 2021, Xgene Cloud Ltd
*
* @author Naveen MR <oof1lab@gmail.com>
* @author Pranav C Balan <pranavxc@gmail.com>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
-->