ui: Fixup partiton > partition typo (#11572)

This commit is contained in:
John Cowen 2021-11-16 15:33:18 +00:00 committed by GitHub
parent 4804a47e32
commit 0027042ad9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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