@@ -87,12 +113,59 @@ class Options extends Component {
name="apiKey"
value={this.apiKey}
onKeyDown={this.handleInputKeyDown}
- onChange={this.onChange}
+ onChange={this.handleChange}
/>
Den API-Schlüssel findest du in deinem Profil unter "Integrationen".
+ {!this.showHostOverrideOptions && (
+
+
Service-URLs
+
+ Doppelpunkt für Platzhalter verwenden, z.B.{" "}
+ :org. Siehe{" "}
+
+ Online-Doku
+
+ .
+
+
+ {pipe(
+ Object.entries,
+ Array.from,
+ )(this.hostOverrides).map(([name, host]) => (
+
+
+
+ {upperCaseFirstLetter(name)}
+
+
+
+
+ ))}
+
+ )}