Skip to content

Commit

Permalink
BXC-4061 make sure no assigned thumbnail tag is hidden in frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
Sharon Luong committed Oct 24, 2023
1 parent 3863d7f commit 1938c72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/js/admin/src/ResultObject.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ define('ResultObject', [ 'jquery', 'jquery-ui', 'underscore', 'ModalLoadingOverl

if (tags.length > 0) {
this.metadata.tags = tags.filter(function(d) {
return !/^(has|not|no.primary|public.access|members.are.unordered)/i.test(d);
return !/^(has|not|no.primary|public.access|members.are.unordered|no.assigned.thumbnail)/i.test(d);
}).map(function(d) {
var tagValue;

Expand Down

0 comments on commit 1938c72

Please sign in to comment.