diff --git a/web/app/components/app-sidebar/basic.tsx b/web/app/components/app-sidebar/basic.tsx
index 51fc10721e..20777c7b6a 100644
--- a/web/app/components/app-sidebar/basic.tsx
+++ b/web/app/components/app-sidebar/basic.tsx
@@ -60,18 +60,18 @@ export default function AppBasic({ icon, icon_background, name, isExternal, type
return (
{icon && icon_background && iconType === 'app' && (
-
+
)}
{iconType !== 'app'
- &&
+ &&
{ICON_MAP[iconType]}
}
{mode === 'expand' &&
-
+
{name}
{hoverTip
&&
}
-
{type}
+
{type}
{isExternal ? t('dataset.externalTag') : ''}
}
diff --git a/web/app/components/app/overview/appChart.tsx b/web/app/components/app/overview/appChart.tsx
index d1426caa27..6ae6253812 100644
--- a/web/app/components/app/overview/appChart.tsx
+++ b/web/app/components/app/overview/appChart.tsx
@@ -231,7 +231,7 @@ const Chart: React.FC
= ({
const sumData = isAvg ? (sum(yData) / yData.length) : sum(yData)
return (
-
+
@@ -242,11 +242,11 @@ const Chart: React.FC
= ({
type={!CHART_TYPE_CONFIG[chartType].showTokens
? ''
: {t('appOverview.analysis.tokenUsage.consumed')} Tokens
- (
+ (
~{sum(statistics.map(item => Number.parseFloat(get(item, 'total_price', '0')))).toLocaleString('en-US', { style: 'currency', currency: 'USD', minimumFractionDigits: 4 })}
- )
+ )
}
- textStyle={{ main: `!text-3xl !font-normal ${sumData === 0 ? '!text-gray-300' : ''}` }} />
+ textStyle={{ main: `!text-3xl !font-normal ${sumData === 0 ? '!text-text-quaternary' : ''}` }} />
diff --git a/web/app/components/base/select/index.tsx b/web/app/components/base/select/index.tsx
index 687d402582..3332a11abd 100644
--- a/web/app/components/base/select/index.tsx
+++ b/web/app/components/base/select/index.tsx
@@ -245,7 +245,7 @@ const SimpleSelect: FC = ({
leaveTo="opacity-0"
>
-
+
{items.map((item: Item) => (
= ({ children }) =>
setCurrentWorkspace(currentWorkspaceResponse)
}, [currentWorkspaceResponse])
- const [theme, setTheme] = useState(Theme.light)
+ const [theme, setTheme] = useState(Theme.dark)
const handleSetTheme = useCallback((theme: Theme) => {
setTheme(theme)
globalThis.document.documentElement.setAttribute('data-theme', theme)