Skip to content

Commit

Permalink
Change Title
Browse files Browse the repository at this point in the history
  • Loading branch information
Baw-Appie committed Jan 2, 2025
1 parent 8323d35 commit a3c3c0b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/scripts/components/elements/PageContentBlock.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export interface PageContentBlockProps {
const PageContentBlock: React.FC<PageContentBlockProps> = ({ title, showFlashKey, className, children }) => {
useEffect(() => {
if (title) {
document.title = title + ' | Pyrodactyl';
document.title = title + ' | Minehub Cloud';
}
}, [title]);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const ServerConsoleContainer = () => {
const isNodeUnderMaintenance = ServerContext.useStoreState((state) => state.server.data!.isNodeUnderMaintenance);

return (
<ServerContentBlock title={'Home'}>
<ServerContentBlock title={''}>
<div className='w-full h-full min-h-full flex-1 flex flex-col gap-4'>
{(isNodeUnderMaintenance || isInstalling || isTransferring) && (
<Alert type={'warning'} className={'mb-4'}>
Expand Down
2 changes: 1 addition & 1 deletion resources/scripts/routers/ServerRouter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ export default () => {
end
>
<HugeIconsConsole fill='currentColor' />
<p>시작 옵션</p>
<p>시작 설정</p>
</NavLink>
</Can>
<Can action={'schedule.*'} matchAny>
Expand Down

0 comments on commit a3c3c0b

Please sign in to comment.