mirror of https://github.com/rancher/ui.git
13 lines
351 B
JavaScript
13 lines
351 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.{defaultMode,items,name,optional}', function () {
|
|
this.sendUpdate();
|
|
}),
|
|
});
|