LT-275: Fixing invisible label issue after selection

This commit is contained in:
Bruno Alves de Faria 2016-10-24 12:38:32 +01:00 committed by Erik Ziegler
parent 31bce34dd6
commit 0ba77cd0b1

View File

@ -235,14 +235,14 @@ Template.selectTree.events({
storedData[itemKey] = 1;
}
// Set the selected leaf value in the root component
const itemData = $target.data('component').templateInstance.data.itemData;
rootComponent.value(itemData);
// Updata the stored data with the new count
OHIF.user.setData(storageKey, storedData);
}
// Set the selected leaf value in the root component
const itemData = $target.data('component').templateInstance.data.itemData;
rootComponent.value(itemData);
// Mark the component as selected
instance.setSelected(true);
} else {