[release] v0.9.0-unstable11

This commit is contained in:
Yann Stepienik 2023-07-04 11:58:14 +01:00
parent cb4319bee0
commit d96d1aecd0
2 changed files with 3 additions and 3 deletions

View file

@ -40,8 +40,8 @@ const RestartModal = ({openModal, setOpenModal, config, newRoute }) => {
const needsRefresh = config && (config.HTTPConfig.HTTPSCertificateMode == "SELFSIGNED" ||
!isDomain(config.HTTPConfig.Hostname))
const isNotDomain = config && !isDomain(config.HTTPConfig.Hostname);
const newRouteWarning = config.HTTPConfig.HTTPSCertificateMode == "LETSENCRYPT" && newRoute &&
!config.HTTPConfig.DNSChallengeProvider;
const newRouteWarning = config && (config.HTTPConfig.HTTPSCertificateMode == "LETSENCRYPT" && newRoute &&
!config.HTTPConfig.DNSChallengeProvider);
return config ? (<>
{needsRefresh && <>

View file

@ -1,6 +1,6 @@
{
"name": "cosmos-server",
"version": "0.9.0-unstable10",
"version": "0.9.0-unstable11",
"description": "",
"main": "test-server.js",
"bugs": {