diff options
author | Alex Tatiyants <atatiyan@gmail.com> | 2016-01-18 16:22:46 -0800 |
---|---|---|
committer | Alex Tatiyants <atatiyan@gmail.com> | 2016-01-18 16:22:46 -0800 |
commit | f9a70b6c80b388d57831eeeb501b1d3fe3e3d336 (patch) | |
tree | 7f0327c8d678ed080b905271dbef3ae39493f4f0 /app/components/plan-view | |
parent | fc313bbccfec19fb7d8ecf296a3dd89ef9e8bf9a (diff) |
add sample plan
Diffstat (limited to 'app/components/plan-view')
-rw-r--r-- | app/components/plan-view/plan-view.html | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/app/components/plan-view/plan-view.html b/app/components/plan-view/plan-view.html index 0953603..4ebb70c 100644 --- a/app/components/plan-view/plan-view.html +++ b/app/components/plan-view/plan-view.html @@ -33,12 +33,6 @@ <button [class.selected]="viewOptions.highlightType === highlightTypes.ROWS" (click)="viewOptions.highlightType = highlightTypes.ROWS">rows</button> <button [class.selected]="viewOptions.highlightType === highlightTypes.COST" (click)="viewOptions.highlightType = highlightTypes.COST">cost</button> </div> - <!-- <select [(ngModel)]="viewOptions.highlightType"> - <option value="{{highlightTypes.NONE}}">{{highlightTypes.NONE}}</option> - <option value="{{highlightTypes.DURATION}}">{{highlightTypes.DURATION}}</option> - <option value="{{highlightTypes.ROWS}}">{{highlightTypes.ROWS}}</option> - <option value="{{highlightTypes.COST}}">{{highlightTypes.COST}}</option> - </select> --> </li> </ul> </div> @@ -51,7 +45,6 @@ </button> </h2> - <div *ngIf="viewOptions.showPlanStats" class="plan-stats"> <div> <span class="stat-value">{{plan.planStats.executionTime | duration}}</span> |