From 6337e84894e079e203288aa2a49e83ab75b6cde3 Mon Sep 17 00:00:00 2001 From: Alezia Kurdis <60075796+AleziaKurdis@users.noreply.github.com> Date: Wed, 9 Sep 2020 22:41:05 -0400 Subject: [PATCH] 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. --- scripts/system/create/edit.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/system/create/edit.js b/scripts/system/create/edit.js index 0de87e563c..15fd513ec2 100644 --- a/scripts/system/create/edit.js +++ b/scripts/system/create/edit.js @@ -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; }