Remove console.debug from tags colorize handler

9cdfb8b59636364420970355f6fbfe22ddef9abf

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +0 -2Showing whitespace changes
public/scripts/tags.js+0 -2
@@ -1738,7 +1738,6 @@ function onTagRenameInput() {
17381738 * @param {string} cssProperty - The CSS property to apply the color to
17391739 */
17401740function onTagColorize(evt, setColor, cssProperty) {
1741- console.debug(evt);
17421741 const isDefaultColor = $(evt.target).data('default-color') === evt.detail.rgba;
17431742 $(evt.target).closest('.tag_view_color_picker').find('.link_icon').toggle(!isDefaultColor);
17441743
@@ -1749,7 +1748,6 @@ function onTagColorize(evt, setColor, cssProperty) {
17491748 $(evt.target).closest('.tag_view_item').find('.tag_view_name').css(cssProperty, newColor);
17501749 const tag = tags.find(x => x.id === id);
17511750 setColor(tag, newColor);
1752- console.debug(tag);
17531751 saveSettingsDebounced();
17541752
17551753 // Debounce redrawing color of the tag in other elements