Skip to content

Commit

Permalink
Merge pull request #2027 from DSD-DBS/enable-notice-encapsulation
Browse files Browse the repository at this point in the history
fix: Enable view encapsulation for notice component
  • Loading branch information
MoritzWeber0 authored Nov 20, 2024
2 parents 948773d + a3580e4 commit 5ff81fe
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions frontend/src/app/general/notice/notice.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@
* SPDX-License-Identifier: Apache-2.0
*/
import { AsyncPipe, NgClass } from '@angular/common';
import { Component, ViewEncapsulation } from '@angular/core';
import { Component } from '@angular/core';
import { NoticeWrapperService } from 'src/app/general/notice/notice.service';

@Component({
selector: 'app-notice',
templateUrl: './notice.component.html',
styleUrls: ['./notice.component.css'],
encapsulation: ViewEncapsulation.None,
standalone: true,
imports: [NgClass, AsyncPipe],
})
Expand Down

0 comments on commit 5ff81fe

Please sign in to comment.