Merge pull request #1138 from HifiExperiments/emptyField

fix accidentally clearing url fields when you don't have view permission
This commit is contained in:
ksuprynowicz 2024-09-22 18:15:16 +02:00 committed by GitHub
commit 542b231107
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2365,6 +2365,11 @@ function updateMultiDiffProperties(propertiesMapToUpdate, onlyUpdateEntity) {
function createEmitTextPropertyUpdateFunction(property) {
return function() {
// If we don't have canViewAssetURLs permissions, ignore clearing URLs
if (!canViewAssetURLs && property.data.placeholder === "URL" && this.value === "") {
return;
}
property.elInput.classList.remove('multi-diff');
updateProperty(property.name, this.value, property.isParticleProperty);
};