Yann Stepienik преди 2 години
родител
ревизия
245305e3a6
променени са 4 файла, в които са добавени 5 реда и са изтрити 4 реда
  1. 2 1
      changelog.md
  2. 1 1
      client/src/utils/dns-challenge-comp.jsx
  3. 1 1
      package.json
  4. 1 1
      src/utils/types.go

+ 2 - 1
changelog.md

@@ -1,7 +1,8 @@
-## Version 0.7.1 -> 
+## Version 0.7.1 -> 0.7.4
  - Fix compat with non-HTTP protocol like WebDAV (for Nextcloud for example)
  - Fix regression with DNS wildcards certificates
  - Fix issue with the installer when changing both the labels and the volumes
+ - Fix regression where DNS keys don't appear in the config page after being changed
 
 ## Version 0.7.0
  - Add Cosmos App Market!

+ 1 - 1
client/src/utils/dns-challenge-comp.jsx

@@ -43,7 +43,7 @@ export const DnsChallengeComp = ({ name, configName, style, multiline, type, pla
       });
       return newObj;
     };
-  
+
     return <><CosmosSelect
       name={name}
       label={label}

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "cosmos-server",
-  "version": "0.7.3",
+  "version": "0.7.4",
   "description": "",
   "main": "test-server.js",
   "bugs": {

+ 1 - 1
src/utils/types.go

@@ -105,7 +105,7 @@ type HTTPConfig struct {
 	SSLEmail string `validate:"omitempty,email"`
 	UseWildcardCertificate bool
 	AcceptAllInsecureHostname bool
-	DNSChallengeConfig map[string]string `json:"dnsChallengeConfig,omitempty"`
+	DNSChallengeConfig map[string]string `json:"DNSChallengeConfig,omitempty"`
 } 
 
 const (