Compare commits

..

4 Commits

Author SHA1 Message Date
Michel Roegl-Brunner
7bcbf88acd
Merge 143b31b87f into bcc6342f83 2024-12-14 07:05:10 -08:00
community-scripts-pr-app[bot]
bcc6342f83
Update CHANGELOG.md (#820)
Some checks failed
Create Changelog Pull Request / update-changelog-pull-request (push) Has been cancelled
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-12-13 22:55:08 +01:00
CanbiZ
ca902c50fb
Change MISC from red to green (#815)
Some checks failed
Create Changelog Pull Request / update-changelog-pull-request (push) Waiting to run
Frontend CI/CD / build (push) Has been cancelled
Frontend CI/CD / deploy (push) Has been cancelled
2024-12-13 22:52:37 +01:00
community-scripts-pr-app[bot]
69fe688418
Update CHANGELOG.md (#817)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2024-12-13 19:43:14 +01:00
2 changed files with 3 additions and 1 deletions

View File

@ -22,10 +22,12 @@ Do not break established syntax in this file, as it is automatically updated by
### 🚀 Updated Scripts
- Fix Keycloak Update Function [@MickLesk](https://github.com/MickLesk) ([#762](https://github.com/community-scripts/ProxmoxVE/pull/762))
- Fix config bug in Alpine Vaultwarden [@havardthom](https://github.com/havardthom) ([#775](https://github.com/community-scripts/ProxmoxVE/pull/775))
### 🌐 Website
- Change MISC from red to green [@MickLesk](https://github.com/MickLesk) ([#815](https://github.com/community-scripts/ProxmoxVE/pull/815))
- Update some JSON Files for Website [@MickLesk](https://github.com/MickLesk) ([#812](https://github.com/community-scripts/ProxmoxVE/pull/812))
- Update Notes & Documentation for Proxmox Backup Server [@MickLesk](https://github.com/MickLesk) ([#804](https://github.com/community-scripts/ProxmoxVE/pull/804))

View File

@ -26,7 +26,7 @@ export const formattedBadge = (type: string) => {
<Badge className="text-yellow-500/75 border-yellow-500/75">LXC</Badge>
);
case "misc":
return <Badge className="text-red-500/75 border-red-500/75">MISC</Badge>;
return <Badge className="text-green-500/75 border-green-500/75">MISC</Badge>;
}
return null;
};