Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

git Bugfix/delete incorrect path highlight #61

2 changes: 1 addition & 1 deletion webClient/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Expand Up @@ -179,6 +179,11 @@ export class ProjectTreeComponent implements OnInit {
// browser to use the original Editor one. This can be removed once Explorer datasets are used.
let myElement = document.getElementsByClassName("file-explorer-container")[0];
myElement.setAttribute("style", "height: 75px;");
// Uncomment the following code to test Dataset viewer of FE (Disables default Dataset viewer of Editor)
// this.fileExplorer.showDatasets();
// this.showDatasets = false;
// let myElement = document.getElementsByClassName("file-explorer-container")[0];
// myElement.setAttribute("style", "height: 100%;");
}

onDeleteClick($event: any){
Expand Down
Expand Up @@ -10,9 +10,9 @@
-->
<h2 mat-dialog-title>Delete File</h2>
<mat-dialog-content>
Path & File Name (ex. /u/000/doc1):
Absolute File Path (ex. /u/000/doc1):
<mat-form-field>
<input id="name" name="name" required #name="ngModel" [pattern]="FileName_Pattern" matInput type="text" placeholder="Absolute Path"
<input id="name" name="name" required #name="ngModel" matInput type="text" placeholder="Absolute Path"
[(ngModel)]="value">
<button mat-button *ngIf="value" matSuffix mat-icon-button aria-label="Clear" (click)="value=''">
<mat-icon>close</mat-icon>
Expand Down