Skip to content

Commit

Permalink
Merge pull request #3015 from ingef/fix-missing-icons
Browse files Browse the repository at this point in the history
Fix missing icons
  • Loading branch information
thoniTUB authored Apr 3, 2023
2 parents c185dd7 + c9d36a3 commit cb7e8e5
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions frontend/src/js/entity-history/ContentControl.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
import styled from "@emotion/styled";
import {
faEuroSign,
faFingerprint,
faFolder,
faInfo,
} from "@fortawesome/free-solid-svg-icons";
import { memo, useMemo, useState } from "react";
import { useTranslation } from "react-i18next";

Expand Down Expand Up @@ -32,22 +38,22 @@ const ContentControl = ({ value, onChange }: Props) => {
() => [
{
key: "money" as const,
icon: "euro-sign" as const,
icon: faEuroSign,
tooltip: t("history.content.money"),
},
{
key: "concept" as const,
icon: "folder" as const,
icon: faFolder,
tooltip: t("history.content.concept"),
},
{
key: "rest" as const,
icon: "info" as const,
icon: faInfo,
tooltip: t("history.content.rest"),
},
{
key: "groupId" as const,
icon: "fingerprint" as const,
icon: faFingerprint,
tooltip: t("history.content.fingerprint"),
},
],
Expand Down

0 comments on commit cb7e8e5

Please sign in to comment.