forked from 0x2620/pandora
fix list item count update after undo/redo
This commit is contained in:
parent
9045cefa1a
commit
decb6ba0c2
1 changed files with 12 additions and 11 deletions
|
@ -380,9 +380,9 @@ pandora.createLinks = function($element) {
|
|||
}
|
||||
if (object.action == 'copy' || object.action == 'move') {
|
||||
if (type == 'item' && ui.section == 'items') {
|
||||
list = Ox.last(object.targets);
|
||||
listData = pandora.getListData();
|
||||
Ox.Request.clearCache('find');
|
||||
object.targets.forEach(function(list) {
|
||||
listData = pandora.getListData(list);
|
||||
pandora.api.find({
|
||||
query: {
|
||||
conditions: [{key: 'list', value: list, operator: '=='}],
|
||||
|
@ -393,6 +393,7 @@ pandora.createLinks = function($element) {
|
|||
list, 'items', result.data.items
|
||||
);
|
||||
});
|
||||
});
|
||||
} else if (type == 'clip' && ui.section == 'edits') {
|
||||
// FIXME: update edit list
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue