Browse Source

chore(nc-gui): lint

pull/7717/head
Ramesh Mane 5 months ago
parent
commit
7375cd657c
  1. 8
      packages/nc-gui/components/general/ImageCropper.vue
  2. 2
      packages/nc-gui/utils/iconUtils.ts

8
packages/nc-gui/components/general/ImageCropper.vue

@ -3,8 +3,8 @@ import { Cropper } from 'vue-advanced-cropper'
import 'vue-advanced-cropper/dist/style.css'
import 'vue-advanced-cropper/dist/theme.classic.css'
import { useApi, extractSdkResponseErrorMsg } from '#imports'
import type { AttachmentReqType, FileReqType } from 'nocodb-sdk'
import type { AttachmentReqType } from 'nocodb-sdk'
import { extractSdkResponseErrorMsg, useApi } from '#imports'
interface Props {
imageConfig: {
src: string
@ -37,7 +37,7 @@ const previewImage = ref({
const handleCropImage = () => {
const { canvas } = cropperRef.value.getResult()
previewImage.value = {
canvas: canvas,
canvas,
src: canvas.toDataURL(),
}
}
@ -98,7 +98,7 @@ watch(showCropper, () => {
<template>
<NcModal v-model:visible="showCropper" :mask-closable="false">
<div class="nc-image-cropper-wrapper relative">
<cropper
<Cropper
ref="cropperRef"
class="nc-cropper relative"
:src="imageConfig.src"

2
packages/nc-gui/utils/iconUtils.ts

@ -484,7 +484,7 @@ export const iconMap = {
ncArrowUp: NcArrowUp,
ncArrowDown: NcArrowDown,
phoneCall: NcPhoneCall,
crop: NcCrop
crop: NcCrop,
}
export const getMdiIcon = (type: string): any => {

Loading…
Cancel
Save