diff --git a/apps/remix-ide/src/app/plugins/remixGuide.tsx b/apps/remix-ide/src/app/plugins/remixGuide.tsx index 3dcda2829a..117d0c6dab 100644 --- a/apps/remix-ide/src/app/plugins/remixGuide.tsx +++ b/apps/remix-ide/src/app/plugins/remixGuide.tsx @@ -123,6 +123,7 @@ export class RemixGuidePlugin extends ViewPlugin { return diff --git a/apps/remix-ide/src/app/plugins/remixGuideData.json b/apps/remix-ide/src/app/plugins/remixGuideData.json index 2eacf913e1..0986c007f6 100644 --- a/apps/remix-ide/src/app/plugins/remixGuideData.json +++ b/apps/remix-ide/src/app/plugins/remixGuideData.json @@ -9,6 +9,7 @@ "cells": [ { "title": "Intro to Remix", + "titleTooltip": "Example tooltip", "tagList": [ "L2", "AI" diff --git a/libs/remix-ui/grid-view/src/lib/remix-ui-grid-cell.tsx b/libs/remix-ui/grid-view/src/lib/remix-ui-grid-cell.tsx index fa1f9830b6..a5a0fe8ed7 100644 --- a/libs/remix-ui/grid-view/src/lib/remix-ui-grid-cell.tsx +++ b/libs/remix-ui/grid-view/src/lib/remix-ui-grid-cell.tsx @@ -19,7 +19,7 @@ interface RemixUIGridCellProps { logos?: string[] logoURL?: string title: string - titleTooltip: string + titleTooltip?: string hideTitle?: boolean tagList?: string[] // max 8, others will be ignored classList?: string @@ -79,11 +79,12 @@ export const RemixUIGridCell = (props: RemixUIGridCellProps) => {
{ !props.hideTitle &&
- { props.logo && props.logoURL !== '' ? + { props.logo ? props.logoURL !== '' ? : - + : + <> } { props.logos && props.logos.map((logo) => )} { props.title &&