diff --git a/README.md b/README.md index dd3595dfb..6257eda15 100644 --- a/README.md +++ b/README.md @@ -57,6 +57,11 @@ The built-in cattle server expects to be run from `/static/` and hosted on a CDN * `ember test` * `ember test --server` +### Bugs & Issues +Please submit bugs and issues to [rancherio/rancher](//github.com/rancherio/rancher/issues) with a title starting with `[UI] `. + +Or just [click here](//github.com/rancherio/rancher/issues/new?title=%5BUI%5D%20) to create a new issue. + #### Useful links diff --git a/app/pods/registry-credential/model.js b/app/pods/registry-credential/model.js index 2bd0ca2cd..4ec9aaea9 100644 --- a/app/pods/registry-credential/model.js +++ b/app/pods/registry-credential/model.js @@ -4,6 +4,6 @@ export default Cattle.TransitioningResource.extend({ type: 'registryCredential', name: '', publicValue: '', - privateValue: '', + secretValue: '', email: '' }); diff --git a/app/pods/registry/new-credential/route.js b/app/pods/registry/new-credential/route.js index 1a8faa7ae..7b3b576c8 100644 --- a/app/pods/registry/new-credential/route.js +++ b/app/pods/registry/new-credential/route.js @@ -6,7 +6,7 @@ export default Ember.Route.extend(AuthenticatedRouteMixin, { var cred = this.get('store').createRecord({ type:'registryCredential', publicValue: '', - privateValue: '', + secretValue: '', email: '', }); diff --git a/app/pods/registry/new-credential/template.hbs b/app/pods/registry/new-credential/template.hbs index e5fadb067..a660a64f1 100644 --- a/app/pods/registry/new-credential/template.hbs +++ b/app/pods/registry/new-credential/template.hbs @@ -17,11 +17,11 @@