mirror of https://github.com/status-im/consul.git
13 lines
373 B
JavaScript
13 lines
373 B
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
const allLabel = 'All Services (*)';
|
|
export default {
|
|
SourceName: (item) =>
|
|
[item.SourceName, item.SourceName === '*' ? allLabel : undefined].filter(Boolean),
|
|
DestinationName: (item) =>
|
|
[item.DestinationName, item.DestinationName === '*' ? allLabel : undefined].filter(Boolean),
|
|
};
|