Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisrocco committed Jan 7, 2018
1 parent a48cf5f commit 448de3b
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 23 deletions.
8 changes: 0 additions & 8 deletions src/app/pages/project-form/project-form-page.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,14 +53,6 @@ <h1 class="page-title mb-25" *ngIf="form">
<app-form-encoders [project]="project" [form]="form"></app-form-encoders>
</ng-template>
</ngb-tab>
<ngb-tab>
<ng-template ngbTabTitle><i class="icon wb-tag"></i> Ongoing Tasks </ng-template>
<ng-template ngbTabContent>
<div class="container mt-2">
<p> TODO </p>
</div>
</ng-template>
</ngb-tab>
<ngb-tab>
<ng-template ngbTabTitle><i class="icon wb-settings"></i> Settings </ng-template>
<ng-template ngbTabContent>
Expand Down
1 change: 0 additions & 1 deletion src/app/pages/project/forms/project-forms.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ <h3 class="panel-title">
<div class="panel-collapse">
<div class="panel-toolbar bg-grey-300" role="toolbar">
<label class="badge badge-success"> <i class="icon wb-check"></i> Published </label>
<span class="float-right"><b><em> encoded 20 times </em></b></span>
</div>
<div class="panel-body">
<h4>Form Description:</h4>
Expand Down
12 changes: 2 additions & 10 deletions src/app/pages/project/project.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<h1 class="page-title mb-25">{{project?.name}}</h1>
<!--<p class="page-description">{{project.description}}</p>-->

<div class="page-header-actions">
<!--<div class="page-header-actions">
<div class="row no-space w-250 hidden-sm-down">
<div class="col-sm-4">
<div class="counter">
Expand All @@ -29,7 +29,7 @@ <h1 class="page-title mb-25">{{project?.name}}</h1>
</div>
</div>
</div>
</div>
</div>-->
</div>

<p><mat-progress-bar mode="indeterminate" *ngIf="loading > 0"></mat-progress-bar></p>
Expand Down Expand Up @@ -66,14 +66,6 @@ <h1 class="page-title mb-25">{{project?.name}}</h1>
<app-encoders [project]="project"></app-encoders>
</ng-template>
</ngb-tab>
<ngb-tab>
<ng-template ngbTabTitle><i class="icon wb-settings"></i> Settings </ng-template>
<ng-template ngbTabContent>
<p class="text-center">
<em >nothing to see here</em>
</p>
</ng-template>
</ngb-tab>
</ngb-tabset>

</div>
Expand Down
1 change: 0 additions & 1 deletion src/app/shared/services/project-form.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import {AppProject} from "../../models/AppProject";
import {Observable} from "rxjs/Observable";
import {HttpClient} from "@angular/common/http";
import {environment} from "../../../environments/environment";
import {catchError, share} from "rxjs/operators";
import {AppPublication} from "../../models/AppPublication";
import * as _ from "lodash";
import {AppUser} from "../../models/AppUser";
Expand Down
5 changes: 2 additions & 3 deletions src/app/shared/services/project.service.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
import { Injectable } from '@angular/core';
import {Injectable} from '@angular/core';
import {AppForm} from "../../models/AppForm";
import {AppProject} from "../../models/AppProject";
import {Observable} from "rxjs/Observable";
import {HttpClient} from "@angular/common/http";
import {environment} from "../../../environments/environment";
import {catchError, share} from "rxjs/operators";
import {catchError} from "rxjs/operators";
import {AppPublication} from "../../models/AppPublication";
import * as _ from "lodash";
import {AppUser} from "../../models/AppUser";
import {PaginatedResult} from "../../models/PaginatedResult";
import {PaginationOptions} from "../../models/PaginationOptions";
Expand Down

0 comments on commit 448de3b

Please sign in to comment.