mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
remove mdl from social component (#2219)
This commit is contained in:
committed by
Mario Romano
parent
a742e033d1
commit
8f5105d33f
@@ -15,14 +15,15 @@
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
import { Component, EventEmitter, Input, OnChanges, Output } from '@angular/core';
|
||||
import { Component, EventEmitter, Input, OnChanges, Output, ViewEncapsulation } from '@angular/core';
|
||||
import { RatingService } from './../services/rating.service';
|
||||
|
||||
@Component({
|
||||
selector: 'adf-like',
|
||||
styleUrls: ['./like.component.css'],
|
||||
styleUrls: ['./like.component.scss'],
|
||||
templateUrl: './like.component.html',
|
||||
providers: [RatingService]
|
||||
providers: [RatingService],
|
||||
encapsulation: ViewEncapsulation.None
|
||||
})
|
||||
export class LikeComponent implements OnChanges {
|
||||
|
||||
|
Reference in New Issue
Block a user