Skip to content
This repository was archived by the owner on Jun 27, 2025. It is now read-only.

Commit 52078b7

Browse files
authored
fix(test): e2e test is failing in main branch (#430)
* fix(test): e2e test is failing in main branch Closes #429 * fix(test): e2e test is failing in main branch Closes #429
1 parent 397e981 commit 52078b7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

apps/xlayers/src/app/upload/upload.component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ export class UploadComponent implements OnInit {
3939
this.store.dispatch([
4040
new ResetUiSettings(),
4141
new CurrentData(data),
42-
new SourceFileData(getFileData(file.name, '')),
42+
new SourceFileData(
43+
getFileData(file.name, data.meta?.appVersion || '')
44+
),
4345
new Navigate(['/editor/preview']),
4446
]);
4547
return;

0 commit comments

Comments
 (0)