mirror of
https://github.com/caddyserver/website.git
synced 2025-04-24 05:56:15 -04:00
js: Fix nonstandard module box display
Dunno why show() stopped working, but oh well
This commit is contained in:
parent
55df7ad25d
commit
2fb9ef5f23
1 changed files with 1 additions and 1 deletions
|
@ -168,7 +168,7 @@ function beginRenderingInto($tpl, moduleID, module) {
|
|||
let { pkg, _ } = splitTypeName(module.structure.type_name);
|
||||
$('.nonstandard-project-link', $tpl).attr('href', module.repo).text(module.repo);
|
||||
$('.nonstandard-package-path', $tpl).text(pkg);
|
||||
$('.nonstandard-notice', $tpl).prepend(nonStandardFlag).show();
|
||||
$('.nonstandard-notice', $tpl).css('display', 'block').prepend(nonStandardFlag); // for some reason show() dosen't work
|
||||
}
|
||||
|
||||
var $repoName = $('<span/>').text(stripScheme(module.repo));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue