table group menu and contextmenu icons were changed

This commit is contained in:
Elyor Djalilov 2024-01-17 18:03:47 +05:00
parent b9cc35acd8
commit 5a7969473b
2 changed files with 6 additions and 6 deletions

View File

@ -3,7 +3,7 @@ import ArrowPathReactSvgUrl from "PUBLIC_DIR/images/arrow.path.react.svg?url";
import ActionsHeaderTouchReactSvgUrl from "PUBLIC_DIR/images/actions.header.touch.react.svg?url";
import HistoryFinalizedReactSvgUrl from "PUBLIC_DIR/images/history-finalized.react.svg?url";
import RemoveSvgUrl from "PUBLIC_DIR/images/remove.session.svg?url";
import TrashReactSvgUrl from "PUBLIC_DIR/images/trash.react.svg?url";
import LogoutReactSvgUrl from "PUBLIC_DIR/images/logout.react.svg?url";
import React from "react";
import { inject, observer } from "mobx-react";
import styled, { css } from "styled-components";
@ -381,14 +381,14 @@ const SectionHeaderContent = (props) => {
key: "Logout",
label: t("Common:Logout"),
onClick: onClickLogout,
iconUrl: RemoveSvgUrl,
iconUrl: LogoutReactSvgUrl,
},
{
id: "Disable",
key: "Disable",
label: t("Common:DisableUserButton"),
onClick: onClickDisable,
iconUrl: TrashReactSvgUrl,
iconUrl: RemoveSvgUrl,
},
]
: [

View File

@ -11,7 +11,7 @@ import { Checkbox } from "@docspace/shared/components/checkbox";
import HistoryFinalizedReactSvgUrl from "PUBLIC_DIR/images/history-finalized.react.svg?url";
import RemoveSvgUrl from "PUBLIC_DIR/images/remove.session.svg?url";
import TrashReactSvgUrl from "PUBLIC_DIR/images/trash.react.svg?url";
import LogoutReactSvgUrl from "PUBLIC_DIR/images/logout.react.svg?url";
const Wrapper = styled.div`
display: contents;
@ -177,7 +177,7 @@ const SessionsTableRow = (props) => {
{
key: "LogoutAllSessions",
label: t("Settings:LogoutAllSessions"),
icon: RemoveSvgUrl,
icon: LogoutReactSvgUrl,
onClick: onClickLogout,
},
{
@ -187,7 +187,7 @@ const SessionsTableRow = (props) => {
{
key: "Disable",
label: t("Common:DisableUserButton"),
icon: TrashReactSvgUrl,
icon: RemoveSvgUrl,
onClick: onClickDisable,
},
];