Fix #2045 ("fetch metadata" update appends to the existing tags instead or replacing them)

This commit is contained in:
Ozzieisaacs 2021-11-03 18:16:15 +04:00
parent 2b6f5b1565
commit 1e0ff0f9c2

View File

@ -28,7 +28,10 @@ $(function () {
function populateForm (book) {
tinymce.get("description").setContent(book.description);
var uniqueTags = [];
var uniqueTags = $.map($("#tags").val().split(","), $.trim);
if ( uniqueTags.length == 1 && uniqueTags[0] == "") {
uniqueTags = [];
}
$.each(book.tags, function(i, el) {
if ($.inArray(el, uniqueTags) === -1) uniqueTags.push(el);
});