2020-12-18 10:38:15 +00:00
|
|
|
const allLabel = 'All Services (*)';
|
2020-12-01 15:45:09 +00:00
|
|
|
export default {
|
2020-12-18 10:38:15 +00:00
|
|
|
SourceName: item =>
|
|
|
|
[item.SourceName, item.SourceName === '*' ? allLabel : undefined].filter(Boolean),
|
|
|
|
DestinationName: item =>
|
|
|
|
[item.DestinationName, item.DestinationName === '*' ? allLabel : undefined].filter(Boolean),
|
2020-11-11 16:59:15 +00:00
|
|
|
};
|