-
Notifications
You must be signed in to change notification settings - Fork 400
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
52f34d3
commit b47012a
Showing
17 changed files
with
209 additions
and
343 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
ui/src/app/edge/history/peakshaving/symmetric/Symmetric.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { BrowserModule } from '@angular/platform-browser'; | ||
import { SharedModule } from 'src/app/shared/shared.module'; | ||
|
||
import { ChartComponent } from './chart/chart'; | ||
import { FlatComponent } from './flat/flat'; | ||
import { OverviewComponent } from './overview/overview'; | ||
|
||
@NgModule({ | ||
imports: [ | ||
BrowserModule, | ||
SharedModule | ||
], | ||
entryComponents: [ | ||
FlatComponent, | ||
OverviewComponent, | ||
ChartComponent | ||
], | ||
declarations: [ | ||
FlatComponent, | ||
OverviewComponent, | ||
ChartComponent | ||
], | ||
exports: [ | ||
FlatComponent, | ||
OverviewComponent, | ||
ChartComponent | ||
] | ||
}) | ||
export class Common_SymmetricPeakShaving { } |
220 changes: 0 additions & 220 deletions
220
ui/src/app/edge/history/peakshaving/symmetric/chart.component.ts
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.