@@ -20,11 +20,9 @@ import {PropTypes} from 'prop-types';
20
20
import { StoreEditControlPanel as EditControlPanel } from './common/StoreControlPanels.jsx' ;
21
21
import { DisableTimeoutHint , DurationHint , PrefetchHint , Hint } from './common/Hints.jsx' ;
22
22
// import ViewJsonDebugger from './Debugger.jsx';
23
- import { Utils } from '../CompUtils.js' ;
24
- // import Filters from '../Filters.js';
25
- import { TimeUtils } from '../../TimeUtils.js' ;
26
- import { PACKAGE_TYPES } from '../ComponentConstants.js' ;
27
- import { jsonRest } from '../../RestClient.js' ;
23
+ import { Utils } from '../../utils/AppUtils.js' ;
24
+ import { TimeUtils } from '../../utils/TimeUtils.js' ;
25
+ import { jsonRest } from '../../utils/RestClient.js' ;
28
26
29
27
const init = ( pkgType , storeName , setState ) => {
30
28
const getUrl = `/api/admin/stores/${ pkgType } /remote/${ storeName } ` ;
@@ -121,8 +119,8 @@ export default function RemoteEdit() {
121
119
// Utils.logMessage(mode);
122
120
let storeView = state . storeView ;
123
121
// let store = state.store;
124
- // TODO this package types should be fetched from backend
125
- let pkgTypes = PACKAGE_TYPES ;
122
+ // TODO: this package types should be fetched from backend
123
+ let pkgTypes = [ "maven" , "generic-http" , "npm" ] ;
126
124
127
125
const handleCheckChange = ( event , field ) => {
128
126
if ( event . target . checked ) {
0 commit comments