Compare commits

..

No commits in common. "b56fdeea721712d0750f15db4fc1134b93ada400" and "029ad03fd533d33db1159c42335d459265702c36" have entirely different histories.

2 changed files with 2 additions and 4 deletions

View file

@ -1105,7 +1105,7 @@ class Item(models.Model):
for a in Entity.objects.filter(id__in=[ox.fromAZ(i) for i in current_values]).values('name') for a in Entity.objects.filter(id__in=[ox.fromAZ(i) for i in current_values]).values('name')
] ]
current_values = [ox.decode_html(ox.strip_tags(v.replace('<br>', ' '))) for v in current_values] current_values = [ox.decode_html(ox.strip_tags(v.replace('<br>', ' '))) for v in current_values]
current_values = [unicodedata.normalize('NFKD', v) for v in current_values if v] current_values = [unicodedata.normalize('NFKD', v) for v in current_values]
self.update_facet_values(key, current_values) self.update_facet_values(key, current_values)
def update_facet_values(self, key, current_values): def update_facet_values(self, key, current_values):

View file

@ -412,10 +412,8 @@ pandora.ui.editPanel = function(isEmbed) {
updateSmallTimelineURL(); updateSmallTimelineURL();
ui.edits[ui.edit].view == 'grid' && enableDragAndDrop(); ui.edits[ui.edit].view == 'grid' && enableDragAndDrop();
if (!Ox.Focus.focusedElementIsInput()) {
that.gainFocus(); that.gainFocus();
} }
}
function renderEdits() { function renderEdits() {
that.css({ that.css({