mirror of
https://github.com/murdos/musicbrainz-userscripts
synced 2024-12-12 19:32:27 +00:00
bandcamp_importer: Apply display style to all importer forms
Fixes a display regression introduced by 79d894538e
.
This commit is contained in:
parent
2d2f43211a
commit
d357764ee7
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
// ==UserScript==
|
||||
// @name Import Bandcamp releases to MusicBrainz
|
||||
// @description Add a button on Bandcamp's album pages to open MusicBrainz release editor with pre-filled data for the selected release
|
||||
// @version 2022.4.10.1
|
||||
// @version 2022.5.6.1
|
||||
// @namespace http://userscripts.org/users/22504
|
||||
// @downloadURL https://raw.github.com/murdos/musicbrainz-userscripts/master/bandcamp_importer.user.js
|
||||
// @updateURL https://raw.github.com/murdos/musicbrainz-userscripts/master/bandcamp_importer.user.js
|
||||
|
@ -229,7 +229,7 @@ const BandcampImport = {
|
|||
// Append MB import link
|
||||
$('#name-section').append(mbUI);
|
||||
document.querySelector('#mb_buttons').style.marginTop = '6px';
|
||||
document.querySelector('form.musicbrainz_import').style.display = 'inline-block';
|
||||
document.querySelectorAll('form.musicbrainz_import').forEach(form => (form.style.display = 'inline-block'));
|
||||
mbUI.slideDown();
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in a new issue