Skip to content

Commit c737eb4

Browse files
authored
Merge pull request #2122 from RaspAP/fix/plugins-manifest
Fix: declare insidersHTML with const in system.js
2 parents d93656e + 033884b commit c737eb4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/js/ui/system.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export function initSystem() {
1212
var installPath = manifestData.install_path;
1313

1414
if (!installed && repoPublic && installPath === 'plugins-available') {
15-
insidersHTML = 'Available with <i class="fas fa-heart heart me-1"></i><a href="https://docs.raspap.com/insiders" target="_blank" rel="noopener">Insiders</a>';
15+
const insidersHTML = 'Available with <i class="fas fa-heart heart me-1"></i><a href="https://docs.raspap.com/insiders" target="_blank" rel="noopener">Insiders</a>';
1616
$('#plugin-additional').html(insidersHTML);
1717
} else {
1818
$('#plugin-additional').empty();

0 commit comments

Comments
 (0)