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
@@ -36,7 +36,8 @@ function ASNsNewManager() {
const pageSize = 10;
const isValidAsn = (value) => /^[0-9]+$/.test(String(value).trim());
const isValidCommunity = (value) => /^[0-9]+$/.test(String(value).trim());
// Допускаем как числовые, так и строковые (AS:NNN) community
const isValidCommunity = (value) => /^(\d+|\d+:\d+)$/.test(String(value).trim());
useEffect(() => {
fetchItems();