Skip to content

Commit

Permalink
frontend: fix k8s kind case
Browse files Browse the repository at this point in the history
This commit fixes the case of the `kind` constant for several k8s
resources.
  • Loading branch information
squat committed Sep 26, 2016
1 parent 7646648 commit bed7de7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions frontend/public/module/k8s/enum.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ angular.module('k8s').constant('k8sEnum', {
},
REPLICASET: {
id: 'replicaset',
kind: 'replicaset',
kind: 'ReplicaSet',
label: 'Replica Set',
labelPlural: 'Replica Sets',
isExtension: true,
Expand All @@ -74,7 +74,7 @@ angular.module('k8s').constant('k8sEnum', {
},
DEPLOYMENT: {
id: 'deployment',
kind: 'deployment',
kind: 'Deployment',
label: 'Deployment',
labelPlural: 'Deployments',
isExtension: true,
Expand All @@ -84,7 +84,7 @@ angular.module('k8s').constant('k8sEnum', {
},
JOB: {
id: 'job',
kind: 'job',
kind: 'Job',
label: 'Job',
labelPlural: 'Jobs',
isExtension: true,
Expand Down

0 comments on commit bed7de7

Please sign in to comment.