feat: Add communities management routes and integrate community selection in FilterManager for enhanced user experience
Publish Fast Tabler Docker image / build-and-push-fast (push) Successful in 4m19s

This commit is contained in:
2025-08-10 17:14:55 +07:00
parent bbad45dfad
commit 76dee39843
7 changed files with 488 additions and 7 deletions
+2 -1
View File
@@ -41,7 +41,8 @@ function DomainsNewManager() {
return /^([a-z0-9-]+\.)+[a-z]{2,}$/i.test(v);
};
const isValidCommunity = (value) => /^[0-9]+$/.test(String(value).trim());
// Допускаем как числовые, так и строковые (AS:NNN) community
const isValidCommunity = (value) => /^(\d+|\d+:\d+)$/.test(String(value).trim());
useEffect(() => {
fetchItems();