Browse Source

ui: Fixup partiton > partition typo (#11572)

pull/11579/head
John Cowen 3 years ago committed by GitHub
parent
commit
c847c9a8cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      ui/packages/consul-ui/app/services/repository.js

2
ui/packages/consul-ui/app/services/repository.js

@ -104,7 +104,7 @@ export default class RepositoryService extends Service {
}
if (this.env.var('CONSUL_PARTITIONS_ENABLED')) {
const partition = get(item, 'Partition');
if (typeof partiton !== 'undefined' && partition !== params.partition) {
if (typeof partition !== 'undefined' && partition !== params.partition) {
return false;
}
}

Loading…
Cancel
Save