Browse Source

fix: image icon can not display (#11701)

crazywoola 4 tháng trước cách đây
mục cha
commit
7f095bdc42

+ 2 - 2
web/app/components/base/app-icon/index.tsx

@@ -3,7 +3,6 @@
 import type { FC } from 'react'
 import { init } from 'emoji-mart'
 import data from '@emoji-mart/data'
-import Image from 'next/image'
 import { cva } from 'class-variance-authority'
 import type { AppIconType } from '@/types/app'
 import classNames from '@/utils/classnames'
@@ -62,7 +61,8 @@ const AppIcon: FC<AppIconProps> = ({
     onClick={onClick}
   >
     {isValidImageIcon
-      ? <Image src={imageUrl} className="w-full h-full" alt="app icon" />
+      // eslint-disable-next-line @next/next/no-img-element
+      ? <img src={imageUrl} className="w-full h-full" alt="app icon" />
       : (innerIcon || ((icon && icon !== '') ? <em-emoji id={icon} /> : <em-emoji id='🤖' />))
     }
   </span>

+ 1 - 1
web/i18n/en-US/app.ts

@@ -125,7 +125,7 @@ const translation = {
   switchStart: 'Start switch',
   openInExplore: 'Open in Explore',
   typeSelector: {
-    all: 'ALL Types',
+    all: 'All Types ',
     chatbot: 'Chatbot',
     agent: 'Agent',
     workflow: 'Workflow',

+ 1 - 1
web/i18n/tr-TR/app.ts

@@ -112,7 +112,7 @@ const translation = {
   removeOriginal: 'Orijinal uygulamayı sil',
   switchStart: 'Geçişi Başlat',
   typeSelector: {
-    all: 'ALL Types',
+    all: 'All Types',
     chatbot: 'Chatbot',
     agent: 'Agent',
     workflow: 'Workflow',