We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c274a7 commit 8dee51eCopy full SHA for 8dee51e
src/main/webapp/app/migration/migration-stepper.component.ts
@@ -504,8 +504,11 @@ export class MigrationStepperComponent implements OnInit {
504
505
const module = this.svnDirectories.modules.find(m => m.path === project);
506
507
- if (this.svnDirectories.root) this.mig.uppercase = this.svnDirectories.uppercase;
508
- else this.mig.uppercase = module.uppercase;
+ if (this.svnDirectories.root || this.svnDirectories.flat) {
+ this.mig.uppercase = this.svnDirectories.uppercase;
509
+ } else {
510
+ this.mig.uppercase = module.uppercase;
511
+ }
512
513
if (this.svnDirectories.modules && this.svnDirectories.modules.length > 0) {
514
if (module && module.flat) {
0 commit comments