Skip to content

Commit

Permalink
add missing import to FooterComponent (#24640)
Browse files Browse the repository at this point in the history
so that it can be translated again

Fix #24639
  • Loading branch information
OmarHawk committed Dec 21, 2023
1 parent 69d074e commit df8ffe5
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,16 @@
limitations under the License.
-%>
import { Component } from '@angular/core';
<%_ if (enableTranslation) { _%>
import { TranslateDirective } from 'app/shared/language';
<%_ } _%>

@Component({
standalone: true,
selector: '<%= jhiPrefixDashed %>-footer',
templateUrl: './footer.component.html',
<%_ if (enableTranslation) { _%>
imports: [TranslateDirective],
<%_ } _%>
})
export default class FooterComponent {}

0 comments on commit df8ffe5

Please sign in to comment.