mirror of
https://github.com/logto-io/logto.git
synced 2025-03-31 22:51:25 -05:00
fix(console): special application name for admin console (#997)
* fix(console): special application name for admin console * fix: cr
This commit is contained in:
parent
8530e249aa
commit
a0ff90058c
1 changed files with 8 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
import { Application } from '@logto/schemas';
|
||||
import { adminConsoleApplicationId, Application } from '@logto/schemas';
|
||||
import React from 'react';
|
||||
import useSWR from 'swr';
|
||||
|
||||
|
@ -7,9 +7,14 @@ type Props = {
|
|||
};
|
||||
|
||||
const ApplicationName = ({ applicationId }: Props) => {
|
||||
const { data } = useSWR<Application>(`/api/applications/${applicationId}`);
|
||||
const isAdminConsole = applicationId === adminConsoleApplicationId;
|
||||
|
||||
return <span>{data?.name ?? '-'}</span>;
|
||||
const { data } = useSWR<Application>(!isAdminConsole && `/api/applications/${applicationId}`);
|
||||
|
||||
const name = isAdminConsole ? 'Admin Console' : data?.name;
|
||||
|
||||
// eslint-disable-next-line @typescript-eslint/prefer-nullish-coalescing
|
||||
return <span>{name || '-'}</span>;
|
||||
};
|
||||
|
||||
export default ApplicationName;
|
||||
|
|
Loading…
Add table
Reference in a new issue