Some artifacts left from undone gem finder testing

merge-notes
isark 2 years ago
parent b010557b4f
commit d91e2f2856

@ -1,8 +1,6 @@
<div *ngIf="!overlayService.isOverlay" class="main-container standalone">
<mat-tab-group
[selectedIndex]="selected.value"
(selectedIndexChange)="selected.setValue($event)"
mat-stretch-tabs="false" class="tabs">
<mat-tab-group [selectedIndex]="selected.value" (selectedIndexChange)="selected.setValue($event)"
mat-stretch-tabs="false" class="tabs">
<mat-tab>
<ng-template mat-tab-label>
<span class="tab-label">Settings</span>
@ -13,7 +11,14 @@
<ng-template mat-tab-label>
<span class="tab-label">Editor</span>
</ng-template>
<plan-editor class="content"></plan-editor> </mat-tab>
<plan-editor class="content"></plan-editor>
</mat-tab>
<!-- <mat-tab>
<ng-template mat-tab-label>
<span class="tab-label">Gems</span>
</ng-template>
<app-gem-finder></app-gem-finder>
</mat-tab> -->
</mat-tab-group>
</div>

@ -13,6 +13,7 @@ import { AngularResizeEventModule } from "angular-resize-event";
import { OverlayModule } from "@angular/cdk/overlay";
import { SettingsComponent } from "./settings/settings.component";
import {MatTabsModule} from '@angular/material/tabs';
// import { GemFinderComponent } from "./gem-finder/gem-finder.component";
export function initializeApp(configService: ConfigService) {
return (): Promise<any> => {
@ -34,7 +35,8 @@ export function initializeApp(configService: ConfigService) {
AngularResizeEventModule,
OverlayModule,
SettingsComponent,
MatTabsModule
MatTabsModule,
// GemFinderComponent
],
providers: [
{

@ -3,7 +3,8 @@
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/app",
"types": []
"types": [],
"resolveJsonModule": true
},
"files": ["src/main.ts"],
"include": ["src/**/*.d.ts"]

Loading…
Cancel
Save