Skip to content

Commit

Permalink
Merge pull request #80 from abilpraju-aot/admin-fontawsome-fix
Browse files Browse the repository at this point in the history
Admin fontawsome fix
  • Loading branch information
shuhaib-aot authored Oct 30, 2023
2 parents b86519d + 878e852 commit 8bcdf65
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion forms-flow-admin/src/components/dashboard/dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ export const InsightDashboard = React.memo((props: any) => {
<span className="chip-label">
{label}{" "}
<i
className="fa fa-close chip-close"
className="fa-solid fa-xmark chip-close"
onClick={() => removeDashboardAuth(rowData, label)}
></i>
</span>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
width: 20px;
height: 20px;
color: #393939;
font-weight: 100;
cursor: pointer;
display: inline-flex;
text-align: center;
Expand Down
4 changes: 2 additions & 2 deletions forms-flow-admin/src/components/footer/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React from "react";
import "./footer.scss";
import { version } from "../../../package.json";
import packageInfo from "../../../package.json";
import { Translation } from "react-i18next";

const version_org = version;
const version_org = packageInfo.version;
const Footer = React.memo(() => {
return (
<div>
Expand Down
2 changes: 1 addition & 1 deletion forms-flow-admin/src/components/users/users.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ const Users = React.memo((props: any) => {
<span className="chip-label">
{item?.name}{" "}
<i
className="fa fa-close chip-close"
className="fa-solid fa-xmark chip-close"
onClick={() => removePermission(rowData, item)}
></i>
</span>
Expand Down

0 comments on commit 8bcdf65

Please sign in to comment.