From b9b8632992bbf7e3976e02e6ea722519abf519f2 Mon Sep 17 00:00:00 2001 From: Thoronium <107363768+NotThorny@users.noreply.github.com> Date: Wed, 10 May 2023 12:31:40 -0600 Subject: [PATCH 1/3] Fix port help box --- src/ui/components/ServerLaunchSection.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/components/ServerLaunchSection.tsx b/src/ui/components/ServerLaunchSection.tsx index c8ef226..5cba137 100644 --- a/src/ui/components/ServerLaunchSection.tsx +++ b/src/ui/components/ServerLaunchSection.tsx @@ -294,7 +294,7 @@ export default class ServerLaunchSection extends React.Component onChange={this.setPort} initalValue={this.state.port} /> - + Date: Wed, 10 May 2023 12:58:41 -0600 Subject: [PATCH 2/3] Fix bar overlap on resize --- src/ui/components/RightBar.css | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/ui/components/RightBar.css b/src/ui/components/RightBar.css index 608064f..cfe6a99 100644 --- a/src/ui/components/RightBar.css +++ b/src/ui/components/RightBar.css @@ -11,10 +11,7 @@ width: 80px; right: 0%; - z-index: 99; - background-color: rgba(77, 77, 77, 0.6); - z-index: 999; } .BarImg:hover { From 3ed197b4b4e6d34dc79cf7cf0e1f0cdca6fa0c7a Mon Sep 17 00:00:00 2001 From: Thoronium <107363768+NotThorny@users.noreply.github.com> Date: Wed, 10 May 2023 13:32:47 -0600 Subject: [PATCH 3/3] Prettier --- src/ui/components/ServerLaunchSection.tsx | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/ui/components/ServerLaunchSection.tsx b/src/ui/components/ServerLaunchSection.tsx index c8ef226..942a837 100644 --- a/src/ui/components/ServerLaunchSection.tsx +++ b/src/ui/components/ServerLaunchSection.tsx @@ -31,8 +31,6 @@ interface IState { ipPlaceholder: string portPlaceholder: string - portHelpText: string - httpsLabel: string httpsEnabled: boolean @@ -55,7 +53,6 @@ export default class ServerLaunchSection extends React.Component port: '', ipPlaceholder: '', portPlaceholder: '', - portHelpText: '', httpsLabel: '', httpsEnabled: false, launchServer: () => { @@ -90,7 +87,6 @@ export default class ServerLaunchSection extends React.Component port: config.last_port || '', ipPlaceholder: await translate('main.ip_placeholder'), portPlaceholder: await translate('help.port_placeholder'), - portHelpText: await translate('help.port_help_text'), httpsLabel: await translate('main.https_enable'), httpsEnabled: config.https_enabled || false, swag: config.swag_mode || false, @@ -294,7 +290,7 @@ export default class ServerLaunchSection extends React.Component onChange={this.setPort} initalValue={this.state.port} /> - +