Skip to content

Commit 8dee51e

Browse files
committed
Fix #167
1 parent 8c274a7 commit 8dee51e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/main/webapp/app/migration/migration-stepper.component.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -504,8 +504,11 @@ export class MigrationStepperComponent implements OnInit {
504504

505505
const module = this.svnDirectories.modules.find(m => m.path === project);
506506

507-
if (this.svnDirectories.root) this.mig.uppercase = this.svnDirectories.uppercase;
508-
else this.mig.uppercase = module.uppercase;
507+
if (this.svnDirectories.root || this.svnDirectories.flat) {
508+
this.mig.uppercase = this.svnDirectories.uppercase;
509+
} else {
510+
this.mig.uppercase = module.uppercase;
511+
}
509512

510513
if (this.svnDirectories.modules && this.svnDirectories.modules.length > 0) {
511514
if (module && module.flat) {

0 commit comments

Comments
 (0)