diff --git a/CHANGELOG.md b/CHANGELOG.md index d42ccedd..ada0c8d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 1.10.0 + +- Config editor: Fix workspace loading in new form styling in [#258](https://github.com/grafana/grafana-iot-twinmaker-app/pull/258) +- Add ramda 0.27.2 to resolutions in [#256](https://github.com/grafana/grafana-iot-twinmaker-app/pull/256) +- Query editor: Migrate to new form styling under feature toggle in [#249](https://github.com/grafana/grafana-iot-twinmaker-app/pull/249) +- Config editor: Migrate to new form styling under feature toggle in [#244](https://github.com/grafana/grafana-iot-twinmaker-app/pull/244) + ## 1.9.3 - Upgrade IotAppKit dependency from 9.2.0 to 9.6.0 diff --git a/package.json b/package.json index eb76a12b..8c640a1c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "grafana-iot-twinmaker-app", - "version": "1.9.3", + "version": "1.10.0", "description": "Grafana IoT TwinMaker App Plugin", "scripts": { "build": "NODE_OPTIONS='--max-old-space-size=4096' webpack -c webpack.config.ts --env production ", diff --git a/src/datasource/components/ConfigEditor.tsx b/src/datasource/components/ConfigEditor.tsx index 283c969d..da1bf343 100644 --- a/src/datasource/components/ConfigEditor.tsx +++ b/src/datasource/components/ConfigEditor.tsx @@ -123,7 +123,6 @@ export function ConfigEditor(props: Props) { onCreateOption={onUnknownWorkspaceChange} formatCreateLabel={(v) => `WorkspaceID: ${v}`} isClearable={true} - disabled={workspaces?.length === 0} placeholder="Select a workspace" noOptionsMessage="No workspaces found" onOpenMenu={onOpenHandler}