@spinnaker/core 0.19.3 → 0.19.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@spinnaker/core",
3
3
  "license": "Apache-2.0",
4
- "version": "0.19.3",
4
+ "version": "0.19.4",
5
5
  "module": "dist/index.js",
6
6
  "typings": "dist/index.d.ts",
7
7
  "scripts": {
@@ -120,5 +120,5 @@
120
120
  "shx": "0.3.3",
121
121
  "typescript": "4.3.5"
122
122
  },
123
- "gitHead": "4e2ec409f093985f4c084f8140c650f29bb9009b"
123
+ "gitHead": "3d37fe6b9dfe120308bf0374e7f93146b745f272"
124
124
  }
@@ -1,4 +1,4 @@
1
- <dl class="dl-horizontal" ng-if="(config.application.attributes && config.application.attributes.email)">
1
+ <dl class="dl-horizontal" ng-if="(vm.application.attributes && vm.application.attributes.email)">
2
2
  <dt>Owner</dt>
3
3
  <dd>{{vm.application.attributes.email}}</dd>
4
4
  <dt ng-if="vm.application.attributes.appGroup">App Group <help-field key="application.group"></help-field></dt>
@@ -55,11 +55,11 @@
55
55
  <dd>{{vm.permissions}}</dd>
56
56
  </render-if-feature>
57
57
  </dl>
58
- <p ng-if="(!config.application.attributes || !config.application.attributes.email)">
58
+ <p ng-if="(!vm.application.attributes || !vm.application.attributes.email)">
59
59
  This application has not been configured.
60
60
  </p>
61
61
  <button class="btn btn-link" ng-click="vm.editApplication()">
62
62
  <span class="glyphicon glyphicon-cog"></span>
63
- {{ (!config.application.attributes || !config.application.attributes.email) ? "Create Application" : "Edit Application
63
+ {{ (!vm.application.attributes || !vm.application.attributes.email) ? "Create Application" : "Edit Application
64
64
  Attributes"}}
65
65
  </button>