Skip to content

Commit d00494d

Browse files
committed
Change Title
1 parent 7eb2c99 commit d00494d

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
@@ -498,7 +498,7 @@ export default () => {
498498
end
499499
>
500500
<HugeIconsConsole fill='currentColor' />
501-
<p>시작 옵션</p>
501+
<p>시작 설정</p>
502502
</NavLink>
503503
</Can>
504504
<Can action={'schedule.*'} matchAny>

0 commit comments

Comments
 (0)