mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 21:39:40 +02:00
18 lines
582 B
TypeScript
18 lines
582 B
TypeScript
import angular from 'angular';
|
|
|
|
import { r2a } from '@/react-tools/react2angular';
|
|
import { withUIRouter } from '@/react-tools/withUIRouter';
|
|
import { VolumesDatatable } from '@/react/docker/volumes/ListView/VolumesDatatable';
|
|
import { withCurrentUser } from '@/react-tools/withCurrentUser';
|
|
|
|
export const volumesModule = angular
|
|
.module('portainer.docker.react.components.volumes', [])
|
|
.component(
|
|
'volumesDatatable',
|
|
r2a(withUIRouter(withCurrentUser(VolumesDatatable)), [
|
|
'dataset',
|
|
'onRemove',
|
|
'onRefresh',
|
|
'isBrowseVisible',
|
|
])
|
|
).name;
|