mirror of
https://github.com/AleziaKurdis/overte.git
synced 2025-04-05 20:28:25 +02:00
Merge pull request #1138 from HifiExperiments/emptyField
fix accidentally clearing url fields when you don't have view permission
This commit is contained in:
commit
542b231107
1 changed files with 5 additions and 0 deletions
|
@ -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);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue