diff --git a/web/src/elements/notifications/NotificationTrigger.ts b/web/src/elements/notifications/NotificationTrigger.ts index f20cf8a9c..e58842b69 100644 --- a/web/src/elements/notifications/NotificationTrigger.ts +++ b/web/src/elements/notifications/NotificationTrigger.ts @@ -1,12 +1,13 @@ import { CSSResult, customElement, html, LitElement, TemplateResult } from "lit-element"; import PFBase from "@patternfly/patternfly/patternfly-base.css"; import PFDropdown from "@patternfly/patternfly/components/Dropdown/dropdown.css"; +import FA from "@fortawesome/fontawesome-free/css/fontawesome.css"; @customElement("ak-notification-trigger") export class NotificationRule extends LitElement { static get styles(): CSSResult[] { - return [PFBase, PFDropdown]; + return [PFBase, PFDropdown, FA]; } constructor() {