Fix for Issue #696

This fixes a refresh of the FILE value in the Create App Entity list when updating the imageURL of an Image Entity.
(It was missing in the condition that checks to add to the refresh of the list.)

This solves the issue #696.
This commit is contained in:
Alezia Kurdis 2020-09-09 22:41:05 -04:00 committed by GitHub
parent 44cc060200
commit 6337e84894
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2443,8 +2443,8 @@ var PropertiesTool = function (opts) {
Entities.editEntity(entityID, properties);
});
if (properties.name !== undefined || properties.modelURL !== undefined || properties.materialURL !== undefined ||
properties.visible !== undefined || properties.locked !== undefined) {
if (properties.name !== undefined || properties.modelURL !== undefined || properties.imageURL !== undefined ||
properties.materialURL !== undefined || properties.visible !== undefined || properties.locked !== undefined) {
sendListUpdate = true;
}