mirror of https://github.com/rancher/ui.git
13 lines
382 B
JavaScript
13 lines
382 B
JavaScript
import Component from '@ember/component';
|
|
import layout from './template';
|
|
import { get, setProperties, computed, observer } from '@ember/object';
|
|
import VolumeSource from 'shared/mixins/volume-source';
|
|
|
|
export default Component.extend(VolumeSource, {
|
|
layout,
|
|
|
|
inputDidUpdate: observer('config.{pdName,partition,fsType,readOnly}', function () {
|
|
this.sendUpdate();
|
|
}),
|
|
});
|