Skip to content

Commit

Permalink
handle inherited processes with spaces in the name
Browse files Browse the repository at this point in the history
  • Loading branch information
sstasi95 committed Dec 12, 2023
1 parent 302bdc7 commit 4eeb238
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/src/services/azure_api_service.dart
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ class AzureApiServiceImpl with AppLogger implements AzureApiService {

if (isInheritedType) {
// inherited types have a different name format
refName = '${projectProcess.name}.${workItemName.replaceAll(' ', '')}';
refName = '${projectProcess.name.replaceAll(' ', '')}.${workItemName.replaceAll(' ', '')}';
}
}

Expand Down

0 comments on commit 4eeb238

Please sign in to comment.