mirror of https://github.com/rancher/ui.git
13 lines
448 B
JavaScript
13 lines
448 B
JavaScript
import Component from '@ember/component';
|
|
import layout from './template';
|
|
import { observer } from '@ember/object';
|
|
import VolumeSource from 'shared/mixins/volume-source';
|
|
|
|
export default Component.extend(VolumeSource, {
|
|
layout,
|
|
|
|
inputDidUpdate: observer('config.{fsType,gateway,protectionDomain,readOnly,secretRef.name,secretRef.namespace,sslEnabled,storageMode,storagePool,system,volumeName}', function () {
|
|
this.sendUpdate();
|
|
}),
|
|
});
|