Skip to content

Commit

Permalink
fix of not changeable context store #358
Browse files Browse the repository at this point in the history
  • Loading branch information
Hypnos3 committed Nov 13, 2021
1 parent 6b23144 commit 7cf16b0
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ This can be also used to go back to an older Version.

- clock-time
- fix of check if payload and topic has changed to prevent send output on not changed payload/topic to output 1 #360
- fix of not changeable context store #358

- blind-control
- fix of not changeable context store #358

### 2.0.3: small fix + enhancement

Expand Down
4 changes: 2 additions & 2 deletions nodes/blind-control.html
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@
const $nodeConfig = $('#node-input-positionConfig');
const node = this;

const $nodeInputContextStore = $('#node-config-input-contextStore');
const $nodeInputContextStore = $('#node-input-contextStore');
RED.settings.context.stores.forEach(store => {
$nodeInputContextStore.append('<option value="' + store + '"' + (this.contextStore === store ? ' selected' : '') + '>' + store + '</option>');
});
Expand Down Expand Up @@ -3837,7 +3837,7 @@
</div>
<div class="form-row">
<label for="node-input-contextStore"><i class="icon-tag"></i> Context Store</label>
<select id="node-config-input-contextStore">
<select id="node-input-contextStore">
<option value="">none</option>
</select>
</div>
Expand Down
4 changes: 2 additions & 2 deletions nodes/clock-timer.html
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@
const $nodeConfig = $('#node-input-positionConfig');
const node = this;

const $nodeInputContextStore = $('#node-config-input-contextStore');
const $nodeInputContextStore = $('#node-input-contextStore');
RED.settings.context.stores.forEach(store => {
$nodeInputContextStore.append('<option value="' + store + '"' + (this.contextStore === store ? ' selected' : '') + '>' + store + '</option>');
});
Expand Down Expand Up @@ -2786,7 +2786,7 @@
</div>
<div class="form-row">
<label for="node-input-contextStore"><i class="icon-tag"></i> Context Store</label>
<select id="node-config-input-contextStore">
<select id="node-input-contextStore">
<option value="">none</option>
</select>
</div>
Expand Down
2 changes: 1 addition & 1 deletion nodes/position-config.html
Original file line number Diff line number Diff line change
Expand Up @@ -613,7 +613,7 @@
</div>

<div class="form-row">
<label for="node-input-contextStore"><i class="icon-tag"></i> Context Store</label>
<label for="node-config-input-contextStore"><i class="icon-tag"></i> Context Store</label>
<select id="node-config-input-contextStore">
<option value="">none</option>
</select>
Expand Down

0 comments on commit 7cf16b0

Please sign in to comment.