Browse Source

chore(nc-gui): lint

pull/3563/head
Wing-Kam Wong 2 years ago
parent
commit
96c8d9a117
  1. 8
      packages/nc-gui/components/cell/Url.vue
  2. 2
      packages/nc-gui/components/smartsheet/toolbar/ShareView.vue

8
packages/nc-gui/components/cell/Url.vue

@ -73,7 +73,13 @@ watch(
<template>
<div class="flex flex-row items-center justify-between w-full h-full">
<input v-if="editEnabled" :ref="focus" v-model="vModel" class="outline-none text-sm w-full px-2" @blur="editEnabled = false" />
<input
v-if="editEnabled"
:ref="focus"
v-model="vModel"
class="outline-none text-sm w-full px-2"
@blur="editEnabled = false"
/>
<nuxt-link
v-else-if="isValid && !cellUrlOptions?.overlay"

2
packages/nc-gui/components/smartsheet/toolbar/ShareView.vue

@ -271,7 +271,7 @@ watch(passwordProtected, (value) => {
<div>
<!-- Allow Download -->
<a-checkbox
v-if="shared && shared.type === ViewTypes.GRID || shared.type === ViewTypes.KANBAN"
v-if="shared && (shared.type === ViewTypes.GRID || shared.type === ViewTypes.KANBAN)"
v-model:checked="allowCSVDownload"
data-cy="nc-modal-share-view__with-csv-download"
class="!text-xs"

Loading…
Cancel
Save