Merge branch 'main' of https://github.com/monochrome-music/monochrome
This commit is contained in:
commit
b3da2da672
3 changed files with 11 additions and 3 deletions
|
|
@ -14,9 +14,9 @@ export default defineConfig(
|
||||||
tseslint.configs.recommendedTypeChecked,
|
tseslint.configs.recommendedTypeChecked,
|
||||||
{
|
{
|
||||||
languageOptions: {
|
languageOptions: {
|
||||||
parser: tsParser, // 👈 REQUIRED
|
parser: tsParser,
|
||||||
parserOptions: {
|
parserOptions: {
|
||||||
project: './tsconfig-eslint.json', // 👈 REQUIRED
|
project: './tsconfig-eslint.json',
|
||||||
},
|
},
|
||||||
ecmaVersion: 2022,
|
ecmaVersion: 2022,
|
||||||
sourceType: 'module',
|
sourceType: 'module',
|
||||||
|
|
|
||||||
|
|
@ -5424,6 +5424,7 @@
|
||||||
<h3 style="text-align: center">Contributors List:</h3>
|
<h3 style="text-align: center">Contributors List:</h3>
|
||||||
<br />
|
<br />
|
||||||
<div class="about-contributors"></div>
|
<div class="about-contributors"></div>
|
||||||
|
<div class="about-contributors-failed"></div>
|
||||||
<div class="about-footer">
|
<div class="about-footer">
|
||||||
<p class="version">Version 2.5.0</p>
|
<p class="version">Version 2.5.0</p>
|
||||||
<p class="version" id="about-commit-info"></p>
|
<p class="version" id="about-commit-info"></p>
|
||||||
|
|
|
||||||
|
|
@ -156,7 +156,14 @@ async function fetchcontributors() {
|
||||||
`;
|
`;
|
||||||
con.appendChild(userDIV);
|
con.appendChild(userDIV);
|
||||||
});
|
});
|
||||||
} catch (e) {}
|
} catch (e) {
|
||||||
|
const con = document.querySelector('.about-contributors-failed');
|
||||||
|
const userDIV = document.createElement('div');
|
||||||
|
userDIV.innerHTML = `
|
||||||
|
<h4 style="text-align: center; color: var(--muted-foreground);">Failed to Fetch Contributor List</h4>
|
||||||
|
`;
|
||||||
|
con.appendChild(userDIV);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function loadMetadataModule() {
|
async function loadMetadataModule() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue