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
Publish Fast Tabler Docker image / build-and-push-fast (push) Successful in 4m19s
This commit is contained in:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user