Skip to content

Commit a3c3c0b

Browse files
committed
Change Title
1 parent 8323d35 commit a3c3c0b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

resources/scripts/components/elements/PageContentBlock.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export interface PageContentBlockProps {
1313
const PageContentBlock: React.FC<PageContentBlockProps> = ({ title, showFlashKey, className, children }) => {
1414
useEffect(() => {
1515
if (title) {
16-
document.title = title + ' | Pyrodactyl';
16+
document.title = title + ' | Minehub Cloud';
1717
}
1818
}, [title]);
1919

resources/scripts/components/server/console/ServerConsoleContainer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const ServerConsoleContainer = () => {
2929
const isNodeUnderMaintenance = ServerContext.useStoreState((state) => state.server.data!.isNodeUnderMaintenance);
3030

3131
return (
32-
<ServerContentBlock title={'Home'}>
32+
<ServerContentBlock title={''}>
3333
<div className='w-full h-full min-h-full flex-1 flex flex-col gap-4'>
3434
{(isNodeUnderMaintenance || isInstalling || isTransferring) && (
3535
<Alert type={'warning'} className={'mb-4'}>

resources/scripts/routers/ServerRouter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ export default () => {
369369
end
370370
>
371371
<HugeIconsConsole fill='currentColor' />
372-
<p>시작 옵션</p>
372+
<p>시작 설정</p>
373373
</NavLink>
374374
</Can>
375375
<Can action={'schedule.*'} matchAny>

0 commit comments

Comments
 (0)