Skip to content

Commit

Permalink
Fix bugs in file upload
Browse files Browse the repository at this point in the history
  • Loading branch information
edlu77 committed Oct 18, 2024
1 parent 147dc15 commit 742226b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { CommonModule } from '@angular/common';
import { ChangeDetectionStrategy, Component, inject, Injector, input, output, Type } from '@angular/core';
import { MatIconModule } from '@angular/material/icon';
import { FileLoader, FileLoaderEvent } from '@hra-ui/cde-visualization';
import { DeleteFileButtonComponent } from '@hra-ui/design-system';
import { DeleteFileButtonComponent } from '@hra-ui/design-system/delete-file-button';
import { ButtonModule } from '@hra-ui/design-system/button';
import { ErrorIndicatorComponent } from '@hra-ui/design-system/error-indicator';
import { reduce, Subscription } from 'rxjs';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
link="https://apps.humanatlas.io/cde/"
description="Beta"
></hra-nav-header>
<form class="content" [formGroup]="visualizationForm" (ngSubmit)="submit()">
<form class="content" [formGroup]="visualizationForm">
<div class="page-nav">
<hra-breadcrumbs
class="nav"
Expand Down Expand Up @@ -460,6 +460,7 @@ <h2 class="header">
hraButtonSize="large"
[disabled]="!hasValidNodes() || !hasValidData()"
data-testid="visualize"
(click)="submit()"
>
Visualize
<mat-icon class="material-symbols-rounded" iconPositionEnd>arrow_right_alt</mat-icon>
Expand Down

0 comments on commit 742226b

Please sign in to comment.