This commit is contained in:
binimum 2026-04-05 14:44:50 +00:00 committed by GitHub
commit b3da2da672
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 11 additions and 3 deletions

View file

@ -14,9 +14,9 @@ export default defineConfig(
tseslint.configs.recommendedTypeChecked,
{
languageOptions: {
parser: tsParser, // 👈 REQUIRED
parser: tsParser,
parserOptions: {
project: './tsconfig-eslint.json', // 👈 REQUIRED
project: './tsconfig-eslint.json',
},
ecmaVersion: 2022,
sourceType: 'module',

View file

@ -5424,6 +5424,7 @@
<h3 style="text-align: center">Contributors List:</h3>
<br />
<div class="about-contributors"></div>
<div class="about-contributors-failed"></div>
<div class="about-footer">
<p class="version">Version 2.5.0</p>
<p class="version" id="about-commit-info"></p>

View file

@ -156,7 +156,14 @@ async function fetchcontributors() {
`;
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() {