Skip to content

Commit 1cd4fc3

Browse files
committed
deploy: 3ce07e7
1 parent de04b93 commit 1cd4fc3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

dist/main.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

modules/things/features.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@
1212
* SPDX-License-Identifier: EPL-2.0
1313
*/
1414

15-
import {JSONPath} from 'jsonpath-plus';
15+
import { JSONPath } from 'jsonpath-plus';
1616
import * as API from '../api.js';
1717
/* eslint-disable comma-dangle */
1818
/* eslint-disable new-cap */
1919
import * as Utils from '../utils.js';
20+
import featuresHTML from './features.html';
2021
import * as Fields from './fields.js';
2122
import * as Things from './things.js';
22-
import featuresHTML from './features.html';
2323

2424
const observers = [];
2525

@@ -243,7 +243,7 @@ function onEditToggle(event) {
243243
if (isEditing && dom.crudFeature.idValue && dom.crudFeature.idValue !== '') {
244244
API.callDittoREST('GET', `/things/${Things.theThing.thingId}/features/${dom.crudFeature.idValue}`, null, null, true)
245245
.then((response) => {
246-
eTag = response.headers.get('ETag').replace('W/', '');
246+
eTag = response.headers.get('ETag');
247247
return response.json();
248248
})
249249
.then((featureJson) => {

0 commit comments

Comments
 (0)