[ADF-2531] Fixes for production mode (#3121)

* fix dialog module

* fix social component providers

* content metadata module fixes

* remove empty provider sections
This commit is contained in:
Denys Vuika
2018-03-26 10:37:28 +01:00
committed by Eugenio Romano
parent 2940b6ce99
commit 396d9104ee
13 changed files with 28 additions and 41 deletions

View File

@@ -19,7 +19,6 @@ import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { MaterialModule } from '../material.module';
import { RatingService } from './services/rating.service';
import { LikeComponent } from './like.component';
import { RatingComponent } from './rating.component';
@@ -35,9 +34,6 @@ import { RatingComponent } from './rating.component';
declarations: [
RatingComponent,
LikeComponent
],
providers: [
RatingService
]
})
export class SocialModule {}