@iobroker/adapter-react-v5 8.2.9 → 8.2.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -690,6 +690,13 @@ You can find the migration instructions:
690
690
  -->
691
691
 
692
692
  ## Changelog
693
+ ### 8.2.11 (2026-06-19)
694
+ - (@GermanBluefox) Correcting background of state if overloaded
695
+ - (@GermanBluefox) Moved translations for json-config to other package
696
+
697
+ ### 8.2.10 (2026-06-16)
698
+ - (@GermanBluefox) Corrected the folder creation
699
+
693
700
  ### 8.2.9 (2026-06-12)
694
701
  - (@GermanBluefox) Updated socket-client package to support reverse proxy
695
702
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright 2020-2025, Denis Haev <dogafox@gmail.com>
2
+ * Copyright 2020-2026, Denis Haev <dogafox@gmail.com>
3
3
  *
4
4
  * MIT License
5
5
  *
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Copyright 2020-2025, Denis Haev <dogafox@gmail.com>
2
+ * Copyright 2020-2026, Denis Haev <dogafox@gmail.com>
3
3
  *
4
4
  * MIT License
5
5
  *
@@ -1347,8 +1347,8 @@ export class FileBrowserClass extends Component {
1347
1347
  return null;
1348
1348
  }
1349
1349
  return (React.createElement(DialogTextInput, { key: "inputDialog", applyText: this.props.t('ra_Create'), cancelText: this.props.t('ra_Cancel'), titleText: this.props.t('ra_Create new folder in %s', this.state.selected), promptText: this.props.t('ra_If no file will be created in the folder, it will disappear after the browser closed'), labelText: this.props.t('ra_Folder name'), verify: (text) => this.state.folders[parentFolder].find(item => item.name === text)
1350
- ? ''
1351
- : this.props.t('ra_Duplicate name'), onClose: (name) => {
1350
+ ? this.props.t('ra_Duplicate name')
1351
+ : '', onClose: (name) => {
1352
1352
  if (name) {
1353
1353
  const folders = {};
1354
1354
  Object.keys(this.state.folders).forEach(folder => (folders[folder] = this.state.folders[folder]));