1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-23 15:29:42 +02:00

refactor(containers): migrate caps tab to react [EE-5215] (#10366)

This commit is contained in:
Chaim Lev-Ari 2023-09-25 19:36:50 +03:00 committed by GitHub
parent 9dde610da3
commit 57e04c3544
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 324 additions and 190 deletions

View file

@ -0,0 +1,7 @@
import { array, SchemaOf, string } from 'yup';
import { Values } from './CapabilitiesTab';
export function validation(): SchemaOf<Values> {
return array(string().default('')).default([]);
}