Browse Source

chore(nc-gui): lint

Ramesh Mane 7 days ago
parent
commit
bbf59d10eb
  1. 4
      packages/nc-gui/extensions/data-exporter/index.vue

4
packages/nc-gui/extensions/data-exporter/index.vue

@ -1,6 +1,6 @@
<script setup lang="ts"> <script setup lang="ts">
import dayjs from 'dayjs' import dayjs from 'dayjs'
import { charsetOptions, SupportedExportCharset, type ViewType, ViewTypes } from 'nocodb-sdk' import { SupportedExportCharset, type ViewType, ViewTypes, charsetOptions } from 'nocodb-sdk'
const jobStatusTooltip = { const jobStatusTooltip = {
[JobStatus.COMPLETED]: 'Export successful', [JobStatus.COMPLETED]: 'Export successful',
@ -334,8 +334,8 @@ onMounted(async () => {
class="nc-data-exporter-encoding nc-select-shadow" class="nc-data-exporter-encoding nc-select-shadow"
dropdown-class-name="w-[190px]" dropdown-class-name="w-[190px]"
:filter-option="filterOption" :filter-option="filterOption"
@change="saveChanges"
show-search show-search
@change="saveChanges"
> >
<a-select-option v-for="encoding of charsetOptions" :key="encoding.label" :value="encoding.value"> <a-select-option v-for="encoding of charsetOptions" :key="encoding.label" :value="encoding.value">
<div class="w-full flex items-center gap-2"> <div class="w-full flex items-center gap-2">

Loading…
Cancel
Save