Skip to content

Commit

Permalink
Fixed the underscorring of the preferred name disappearing when apply…
Browse files Browse the repository at this point in the history
…ing a search filter in thh admin side bar.
  • Loading branch information
filiptypjeu committed Aug 18, 2023
1 parent 3a0c04e commit 3cd7de8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion teknologr/members/static/js/base.js
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ $(document).ready(function () {
}).done(function(data) {
$("#side-objects").empty();
$.each(data, function(i, item) {
var a = '<a class="list-group-item" href="/admin/members/'+ item.pk +'/">'+ item.value +'</a>'
var a = '<a class="list-group-item" href="/admin/members/'+ item.pk +'/">'+ item.match +'</a>'
$("#side-objects").append(a);
});
});
Expand Down

0 comments on commit 3cd7de8

Please sign in to comment.