From 21466729165a302740754d76d37b7d8f69274f40 Mon Sep 17 00:00:00 2001 From: Dave Richer Date: Tue, 4 Feb 2025 13:47:58 -0500 Subject: [PATCH] release/2025-01-31 - fix teams icon --- .../production-board-kanban-card.component.jsx | 4 ++-- .../components/share-to-teams/share-to-teams.component.jsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/client/src/components/production-board-kanban/production-board-kanban-card.component.jsx b/client/src/components/production-board-kanban/production-board-kanban-card.component.jsx index 4ae675a81..ef3c2126b 100644 --- a/client/src/components/production-board-kanban/production-board-kanban-card.component.jsx +++ b/client/src/components/production-board-kanban/production-board-kanban-card.component.jsx @@ -21,7 +21,7 @@ import dayjs from "../../utils/day"; import JobPartsQueueCount from "../job-parts-queue-count/job-parts-queue-count.component"; import OwnerNameDisplay from "../owner-name-display/owner-name-display.component"; import ShareToTeamsButton from "../share-to-teams/share-to-teams.component.jsx"; -import { SiMicrosoftteams } from "react-icons/si"; +import { PiMicrosoftTeamsLogo } from "react-icons/pi"; const cardColor = (ssbuckets, totalHrs) => { const bucket = ssbuckets.find((bucket) => bucket.gte <= totalHrs && (!bucket.lt || bucket.lt > totalHrs)); @@ -424,7 +424,7 @@ export default function ProductionBoardCard({ technician, card, bodyshop, cardSe noIcon={true} linkText={
- +
} urlOverride={`${window.location.origin}/manage/jobs/${card.id}`} diff --git a/client/src/components/share-to-teams/share-to-teams.component.jsx b/client/src/components/share-to-teams/share-to-teams.component.jsx index 4b708c130..a314a826c 100644 --- a/client/src/components/share-to-teams/share-to-teams.component.jsx +++ b/client/src/components/share-to-teams/share-to-teams.component.jsx @@ -1,7 +1,7 @@ import PropTypes from "prop-types"; import { Button } from "antd"; import { useLocation } from "react-router-dom"; -import { SiMicrosoftteams } from "react-icons/si"; +import { PiMicrosoftTeamsLogo } from "react-icons/pi"; import { useTranslation } from "react-i18next"; import { connect } from "react-redux"; import { createStructuredSelector } from "reselect"; @@ -90,7 +90,7 @@ const ShareToTeamsComponent = ({ color: "#FFFFFF", ...buttonStyle }} - icon={} + icon={} onClick={handleShare} title={linkText === null ? t("general.actions.sharetoteams") : linkText} />