1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

fix editorsidebar

This commit is contained in:
Luke Pulverenti 2017-01-26 22:55:04 -05:00
parent 8a263d7b25
commit 8b14acb597

View file

@ -280,13 +280,17 @@
collectionType: node.li_attr.collectiontype collectionType: node.li_attr.collectiontype
}; };
if (eventData.itemType != 'livetv' && eventData.itemType != 'mediafolders' && eventData.serverItemType != 'UserView' && eventData.serverItemType != 'CollectionFolder' && !eventData.collectionType) { if (eventData.itemType != 'livetv' && eventData.itemType != 'mediafolders') {
this.dispatchEvent(new CustomEvent('itemclicked', { // We'd like to prevent these from being editable but this removes the ability to perform a top level refresh
detail: eventData, //if (eventData.serverItemType != 'UserView' && eventData.serverItemType != 'CollectionFolder' && !eventData.collectionType)
bubbles: true, {
cancelable: false this.dispatchEvent(new CustomEvent('itemclicked', {
})); detail: eventData,
bubbles: true,
cancelable: false
}));
}
} }
} }