1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-02 12:25:22 +02:00

refactor(containers): migrate restart policy tab to react [EE-5213] (#10347)

This commit is contained in:
Chaim Lev-Ari 2023-09-25 20:40:26 +03:00 committed by GitHub
parent 3d19c46326
commit 2dfa4a7c45
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 122 additions and 15 deletions

View file

@ -0,0 +1,13 @@
import { validation } from './validation';
import { toViewModel, getDefaultViewModel } from './toViewModel';
import { toRequest } from './toRequest';
export { RestartPolicyTab } from './RestartPolicyTab';
export { RestartPolicy } from './types';
export const restartPolicyTabUtils = {
toViewModel,
toRequest,
validation,
getDefaultViewModel,
};