mirror of https://github.com/rancher/ui.git
16 lines
466 B
JavaScript
16 lines
466 B
JavaScript
import { computed } from '@ember/object';
|
|
import LC from 'ui/models/launchconfig';
|
|
|
|
var secondaryLaunchConfigs = LC.extend({
|
|
displayEnvironmentVars: computed('launchConfig.environment', function() {
|
|
var envs = [];
|
|
var environment = this.get('launchConfig.environment')||{};
|
|
Object.keys(environment).forEach((key) => {
|
|
envs.pushObject({key: key, value: environment[key]})
|
|
});
|
|
return envs;
|
|
}),
|
|
});
|
|
|
|
export default secondaryLaunchConfigs;
|