Skip to content

Commit

Permalink
Fix: Warning in console when creating a new test (#728)
Browse files Browse the repository at this point in the history
  • Loading branch information
brunomatavares committed Sep 13, 2023
1 parent ce51395 commit 60acaac
Show file tree
Hide file tree
Showing 46 changed files with 1,851 additions and 1,590 deletions.
7 changes: 4 additions & 3 deletions web/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@
"dependencies": {
"@ant-design/colors": "^6.0.0",
"@ant-design/icons": "^4.6.2",
"@ant-design/pro-layout": "^7.16.11",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.4.3",
"antd": "^4.19.5",
"antd": "^5.8.6",
"axios": "^0.27.2",
"axios-mock-adapter": "^1.21.2",
"chart.js": "^3.7.1",
Expand All @@ -25,9 +26,9 @@
"prettier": "^2.7.1",
"prop-types": "^15.8.1",
"qs": "^6.11.0",
"react": "^17.0.2",
"react": "^18.2.0",
"react-chartjs-2": "^3.0.3",
"react-dom": "^17.0.2",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.10",
"react-resizable": "^3.0.5",
"react-router-dom": "6.4.2"
Expand Down

Large diffs are not rendered by default.

49 changes: 27 additions & 22 deletions web/frontend/src/components/Header/Profile/Profile.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
LogoutOutlined,
UserOutlined
} from "@ant-design/icons";
import { Dropdown, Menu, Select, Space } from "antd";
import { Dropdown, Select, Space } from "antd";
import { useContext } from "react";
import { Link, useLocation, useNavigate } from "react-router-dom";

Expand Down Expand Up @@ -35,26 +35,31 @@ const Profile = () => {
setCurrentWorkspace(workspace);
};

const menu = (
<Menu>
<Menu.Item key="me" disabled>
{user.email}
</Menu.Item>
{user.role === userRoleModel.ADMIN ? (
<>
<Menu.Item key="workspaces" icon={<AppstoreOutlined />}>
<Link to={workspacesUrl}>Workspaces</Link>
</Menu.Item>
<Menu.Item key="users" icon={<UserOutlined />}>
<Link to={usersUrl}>Users</Link>
</Menu.Item>
</>
) : null}
<Menu.Item key="logout" icon={<LogoutOutlined />}>
<a href={logoutUrl}>Logout</a>
</Menu.Item>
</Menu>
);
const items = [
{
key: "me",
label: user.email,
disabled: true
},
{
key: "workspaces",
label: <Link to={workspacesUrl}>Workspaces</Link>,
icon: <AppstoreOutlined />,
disabled: user.role !== userRoleModel.ADMIN
},
{
key: "users",
label: <Link to={usersUrl}>Users</Link>,
icon: <UserOutlined />,
disabled: user.role !== userRoleModel.ADMIN
},
{
key: "logout",
label: <a href={logoutUrl}>Logout</a>,
icon: <LogoutOutlined />,
danger: true
}
];

return (
<Space align="center">
Expand All @@ -70,7 +75,7 @@ const Profile = () => {
))}
</Select>
<Dropdown
overlay={menu}
menu={{ items }}
placement="bottomRight"
arrow={{ pointAtCenter: true }}
>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`components/Header/Profile should render Profile component from UserContext 1`] = `"<div><div class=\\"ant-space ant-space-horizontal ant-space-align-center\\"><div class=\\"ant-space-item\\" style=\\"margin-right: 8px;\\"><div class=\\"ant-select ant-select-single ant-select-show-arrow\\" style=\\"width: 240px;\\"><div class=\\"ant-select-selector\\"><span class=\\"ant-select-selection-search\\"><input type=\\"search\\" autocomplete=\\"off\\" class=\\"ant-select-selection-search-input\\" role=\\"combobox\\" aria-haspopup=\\"listbox\\" aria-owns=\\"rc_select_TEST_OR_SSR_list\\" aria-autocomplete=\\"list\\" aria-controls=\\"rc_select_TEST_OR_SSR_list\\" aria-activedescendant=\\"rc_select_TEST_OR_SSR_list_0\\" readonly=\\"\\" unselectable=\\"on\\" style=\\"opacity: 0;\\" value=\\"\\" id=\\"rc_select_TEST_OR_SSR\\"></span><span class=\\"ant-select-selection-item\\" title=\\"workspace-1\\">workspace-1</span></div><span class=\\"ant-select-arrow\\" style=\\"user-select: none;\\" unselectable=\\"on\\" aria-hidden=\\"true\\"><span role=\\"img\\" aria-label=\\"down\\" class=\\"anticon anticon-down ant-select-suffix\\"><svg viewBox=\\"64 64 896 896\\" focusable=\\"false\\" data-icon=\\"down\\" width=\\"1em\\" height=\\"1em\\" fill=\\"currentColor\\" aria-hidden=\\"true\\"><path d=\\"M884 256h-75c-5.1 0-9.9 2.5-12.9 6.6L512 654.2 227.9 262.6c-3-4.1-7.8-6.6-12.9-6.6h-75c-6.5 0-10.3 7.4-6.5 12.7l352.6 486.1c12.8 17.6 39 17.6 51.7 0l352.6-486.1c3.9-5.3.1-12.7-6.4-12.7z\\"></path></svg></span></span></div></div><div class=\\"ant-space-item\\"><div style=\\"cursor: pointer;\\" class=\\"ant-dropdown-trigger\\"><span style=\\"background-color: rgb(250, 140, 22);\\" class=\\"ant-avatar ant-avatar-circle\\"><span class=\\"ant-avatar-string\\" style=\\"transform: scale(1) translateX(-50%);\\">TM</span></span></div></div></div></div>"`;
exports[`components/Header/Profile should render Profile component from UserContext 1`] = `"<div><div class=\\"ant-space css-dev-only-do-not-override-nnuwmp ant-space-horizontal ant-space-align-center\\"><div class=\\"ant-space-item\\" style=\\"margin-right: 8px;\\"><div class=\\"ant-select css-dev-only-do-not-override-nnuwmp ant-select-single ant-select-show-arrow\\" style=\\"width: 240px;\\"><div class=\\"ant-select-selector\\"><span class=\\"ant-select-selection-search\\"><input type=\\"search\\" autocomplete=\\"off\\" class=\\"ant-select-selection-search-input\\" role=\\"combobox\\" aria-label=\\"Search\\" aria-expanded=\\"false\\" aria-haspopup=\\"listbox\\" aria-owns=\\"rc_select_TEST_OR_SSR_list\\" aria-autocomplete=\\"list\\" aria-controls=\\"rc_select_TEST_OR_SSR_list\\" readonly=\\"\\" unselectable=\\"on\\" style=\\"opacity: 0;\\" value=\\"\\" id=\\"rc_select_TEST_OR_SSR\\"></span><span class=\\"ant-select-selection-item\\" title=\\"workspace-1\\">workspace-1</span></div><span class=\\"ant-select-arrow\\" style=\\"user-select: none;\\" unselectable=\\"on\\" aria-hidden=\\"true\\"><span role=\\"img\\" aria-label=\\"down\\" class=\\"anticon anticon-down ant-select-suffix\\"><svg viewBox=\\"64 64 896 896\\" focusable=\\"false\\" data-icon=\\"down\\" width=\\"1em\\" height=\\"1em\\" fill=\\"currentColor\\" aria-hidden=\\"true\\"><path d=\\"M884 256h-75c-5.1 0-9.9 2.5-12.9 6.6L512 654.2 227.9 262.6c-3-4.1-7.8-6.6-12.9-6.6h-75c-6.5 0-10.3 7.4-6.5 12.7l352.6 486.1c12.8 17.6 39 17.6 51.7 0l352.6-486.1c3.9-5.3.1-12.7-6.4-12.7z\\"></path></svg></span></span></div></div><div class=\\"ant-space-item\\"><div style=\\"cursor: pointer;\\" class=\\"ant-dropdown-trigger\\"><span style=\\"background-color: rgb(250, 140, 22);\\" class=\\"ant-avatar ant-avatar-circle css-dev-only-do-not-override-nnuwmp\\"><span class=\\"ant-avatar-string\\" style=\\"transform: scale(1) translateX(-50%);\\">TM</span></span></div></div></div></div>"`;
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { CloseCircleOutlined } from "@ant-design/icons";
import { Button, PageHeader, Result, Space, Typography } from "antd";
import { PageHeader } from "@ant-design/pro-layout";
import { Button, Result, Space, Typography } from "antd";
import { useCallback, useEffect, useState } from "react";
import { Link, useNavigate } from "react-router-dom";

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Button, Col, PageHeader, Popconfirm, Row, Steps } from "antd";
import { PageHeader } from "@ant-design/pro-layout";
import { Button, Col, Popconfirm, Row, Steps } from "antd";
import { useCallback } from "react";
import { useNavigate } from "react-router-dom";

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`components/Run/RunningStatus/DownloadMetricsButton should render DownloadMetricsButton component 1`] = `"<div><a href=\\"http://api.maestro.io/api/run_metrics/1-2-3/download\\" target=\\"_blank\\" download=\\"\\" rel=\\"noreferrer\\"><button type=\\"button\\" class=\\"ant-btn ant-btn-primary\\"><span>Download metrics</span></button></a></div>"`;
exports[`components/Run/RunningStatus/DownloadMetricsButton should render DownloadMetricsButton component 1`] = `"<div><a href=\\"http://api.maestro.io/api/run_metrics/1-2-3/download\\" target=\\"_blank\\" download=\\"\\" rel=\\"noreferrer\\"><button type=\\"button\\" class=\\"ant-btn css-dev-only-do-not-override-nnuwmp ant-btn-primary\\"><span>Download metrics</span></button></a></div>"`;
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`components/Run/RunningStatus/EditableLabelsGroup should render RunEditableLabelsGroup component 1`] = `"<div><button type=\\"button\\" class=\\"ant-btn ant-btn-dashed ant-btn-sm\\"><span role=\\"img\\" aria-label=\\"plus\\" class=\\"anticon anticon-plus\\"><svg viewBox=\\"64 64 896 896\\" focusable=\\"false\\" data-icon=\\"plus\\" width=\\"1em\\" height=\\"1em\\" fill=\\"currentColor\\" aria-hidden=\\"true\\"><defs><style></style></defs><path d=\\"M482 152h60q8 0 8 8v704q0 8-8 8h-60q-8 0-8-8V160q0-8 8-8z\\"></path><path d=\\"M176 474h672q8 0 8 8v60q0 8-8 8H176q-8 0-8-8v-60q0-8 8-8z\\"></path></svg></span><span>New label</span></button></div>"`;
exports[`components/Run/RunningStatus/EditableLabelsGroup should render RunEditableLabelsGroup component 1`] = `"<div><button type=\\"button\\" class=\\"ant-btn css-dev-only-do-not-override-nnuwmp ant-btn-dashed ant-btn-sm\\"><span class=\\"ant-btn-icon\\"><span role=\\"img\\" aria-label=\\"plus\\" class=\\"anticon anticon-plus\\"><svg viewBox=\\"64 64 896 896\\" focusable=\\"false\\" data-icon=\\"plus\\" width=\\"1em\\" height=\\"1em\\" fill=\\"currentColor\\" aria-hidden=\\"true\\"><path d=\\"M482 152h60q8 0 8 8v704q0 8-8 8h-60q-8 0-8-8V160q0-8 8-8z\\"></path><path d=\\"M192 474h672q8 0 8 8v60q0 8-8 8H160q-8 0-8-8v-60q0-8 8-8z\\"></path></svg></span></span><span>New label</span></button></div>"`;
exports[`components/Run/RunningStatus/EditableLabelsGroup should render RunEditableLabelsGroup component with default value 1`] = `"<div><span class=\\"ant-tag\\"><span>label1</span><span role=\\"img\\" aria-label=\\"close\\" tabindex=\\"-1\\" class=\\"anticon anticon-close ant-tag-close-icon\\"><svg viewBox=\\"64 64 896 896\\" focusable=\\"false\\" data-icon=\\"close\\" width=\\"1em\\" height=\\"1em\\" fill=\\"currentColor\\" aria-hidden=\\"true\\"><path d=\\"M563.8 512l262.5-312.9c4.4-5.2.7-13.1-6.1-13.1h-79.8c-4.7 0-9.2 2.1-12.3 5.7L511.6 449.8 295.1 191.7c-3-3.6-7.5-5.7-12.3-5.7H203c-6.8 0-10.5 7.9-6.1 13.1L459.4 512 196.9 824.9A7.95 7.95 0 00203 838h79.8c4.7 0 9.2-2.1 12.3-5.7l216.5-258.1 216.5 258.1c3 3.6 7.5 5.7 12.3 5.7h79.8c6.8 0 10.5-7.9 6.1-13.1L563.8 512z\\"></path></svg></span></span><span class=\\"ant-tag\\"><span>label2</span><span role=\\"img\\" aria-label=\\"close\\" tabindex=\\"-1\\" class=\\"anticon anticon-close ant-tag-close-icon\\"><svg viewBox=\\"64 64 896 896\\" focusable=\\"false\\" data-icon=\\"close\\" width=\\"1em\\" height=\\"1em\\" fill=\\"currentColor\\" aria-hidden=\\"true\\"><path d=\\"M563.8 512l262.5-312.9c4.4-5.2.7-13.1-6.1-13.1h-79.8c-4.7 0-9.2 2.1-12.3 5.7L511.6 449.8 295.1 191.7c-3-3.6-7.5-5.7-12.3-5.7H203c-6.8 0-10.5 7.9-6.1 13.1L459.4 512 196.9 824.9A7.95 7.95 0 00203 838h79.8c4.7 0 9.2-2.1 12.3-5.7l216.5-258.1 216.5 258.1c3 3.6 7.5 5.7 12.3 5.7h79.8c6.8 0 10.5-7.9 6.1-13.1L563.8 512z\\"></path></svg></span></span><button type=\\"button\\" class=\\"ant-btn ant-btn-dashed ant-btn-sm\\"><span role=\\"img\\" aria-label=\\"plus\\" class=\\"anticon anticon-plus\\"><svg viewBox=\\"64 64 896 896\\" focusable=\\"false\\" data-icon=\\"plus\\" width=\\"1em\\" height=\\"1em\\" fill=\\"currentColor\\" aria-hidden=\\"true\\"><defs><style></style></defs><path d=\\"M482 152h60q8 0 8 8v704q0 8-8 8h-60q-8 0-8-8V160q0-8 8-8z\\"></path><path d=\\"M176 474h672q8 0 8 8v60q0 8-8 8H176q-8 0-8-8v-60q0-8 8-8z\\"></path></svg></span><span>New label</span></button></div>"`;
exports[`components/Run/RunningStatus/EditableLabelsGroup should render RunEditableLabelsGroup component with default value 1`] = `"<div><span class=\\"ant-tag css-dev-only-do-not-override-nnuwmp\\"><span>label1</span><span role=\\"img\\" aria-label=\\"close\\" tabindex=\\"-1\\" class=\\"anticon anticon-close ant-tag-close-icon\\"><svg fill-rule=\\"evenodd\\" viewBox=\\"64 64 896 896\\" focusable=\\"false\\" data-icon=\\"close\\" width=\\"1em\\" height=\\"1em\\" fill=\\"currentColor\\" aria-hidden=\\"true\\"><path d=\\"M799.86 166.31c.02 0 .04.02.08.06l57.69 57.7c.04.03.05.05.06.08a.12.12 0 010 .06c0 .03-.02.05-.06.09L569.93 512l287.7 287.7c.04.04.05.06.06.09a.12.12 0 010 .07c0 .02-.02.04-.06.08l-57.7 57.69c-.03.04-.05.05-.07.06a.12.12 0 01-.07 0c-.03 0-.05-.02-.09-.06L512 569.93l-287.7 287.7c-.04.04-.06.05-.09.06a.12.12 0 01-.07 0c-.02 0-.04-.02-.08-.06l-57.69-57.7c-.04-.03-.05-.05-.06-.07a.12.12 0 010-.07c0-.03.02-.05.06-.09L454.07 512l-287.7-287.7c-.04-.04-.05-.06-.06-.09a.12.12 0 010-.07c0-.02.02-.04.06-.08l57.7-57.69c.03-.04.05-.05.07-.06a.12.12 0 01.07 0c.03 0 .05.02.09.06L512 454.07l287.7-287.7c.04-.04.06-.05.09-.06a.12.12 0 01.07 0z\\"></path></svg></span></span><span class=\\"ant-tag css-dev-only-do-not-override-nnuwmp\\"><span>label2</span><span role=\\"img\\" aria-label=\\"close\\" tabindex=\\"-1\\" class=\\"anticon anticon-close ant-tag-close-icon\\"><svg fill-rule=\\"evenodd\\" viewBox=\\"64 64 896 896\\" focusable=\\"false\\" data-icon=\\"close\\" width=\\"1em\\" height=\\"1em\\" fill=\\"currentColor\\" aria-hidden=\\"true\\"><path d=\\"M799.86 166.31c.02 0 .04.02.08.06l57.69 57.7c.04.03.05.05.06.08a.12.12 0 010 .06c0 .03-.02.05-.06.09L569.93 512l287.7 287.7c.04.04.05.06.06.09a.12.12 0 010 .07c0 .02-.02.04-.06.08l-57.7 57.69c-.03.04-.05.05-.07.06a.12.12 0 01-.07 0c-.03 0-.05-.02-.09-.06L512 569.93l-287.7 287.7c-.04.04-.06.05-.09.06a.12.12 0 01-.07 0c-.02 0-.04-.02-.08-.06l-57.69-57.7c-.04-.03-.05-.05-.06-.07a.12.12 0 010-.07c0-.03.02-.05.06-.09L454.07 512l-287.7-287.7c-.04-.04-.05-.06-.06-.09a.12.12 0 010-.07c0-.02.02-.04.06-.08l57.7-57.69c.03-.04.05-.05.07-.06a.12.12 0 01.07 0c.03 0 .05.02.09.06L512 454.07l287.7-287.7c.04-.04.06-.05.09-.06a.12.12 0 01.07 0z\\"></path></svg></span></span><button type=\\"button\\" class=\\"ant-btn css-dev-only-do-not-override-nnuwmp ant-btn-dashed ant-btn-sm\\"><span class=\\"ant-btn-icon\\"><span role=\\"img\\" aria-label=\\"plus\\" class=\\"anticon anticon-plus\\"><svg viewBox=\\"64 64 896 896\\" focusable=\\"false\\" data-icon=\\"plus\\" width=\\"1em\\" height=\\"1em\\" fill=\\"currentColor\\" aria-hidden=\\"true\\"><path d=\\"M482 152h60q8 0 8 8v704q0 8-8 8h-60q-8 0-8-8V160q0-8 8-8z\\"></path><path d=\\"M192 474h672q8 0 8 8v60q0 8-8 8H160q-8 0-8-8v-60q0-8 8-8z\\"></path></svg></span></span><span>New label</span></button></div>"`;
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`components/Agents/ListTable should render EditableTitle component with curren title 1`] = `"<div><div style=\\"width: 550px;\\"><div class=\\"ant-typography ant-typography-primary ant-typography-ellipsis ant-typography-single-line\\" aria-label=\\"title test\\" style=\\"padding-left: 14px; max-width: 500px; padding-top: 18px;\\">title test<div role=\\"button\\" tabindex=\\"0\\" class=\\"ant-typography-edit\\" aria-label=\\"Edit\\" style=\\"border: 0px; background: transparent; padding: 0px; line-height: inherit; display: inline-block;\\"><span role=\\"button\\" aria-label=\\"edit\\" class=\\"anticon anticon-edit\\"><svg viewBox=\\"64 64 896 896\\" focusable=\\"false\\" data-icon=\\"edit\\" width=\\"1em\\" height=\\"1em\\" fill=\\"currentColor\\" aria-hidden=\\"true\\"><path d=\\"M257.7 752c2 0 4-.2 6-.5L431.9 722c2-.4 3.9-1.3 5.3-2.8l423.9-423.9a9.96 9.96 0 000-14.1L694.9 114.9c-1.9-1.9-4.4-2.9-7.1-2.9s-5.2 1-7.1 2.9L256.8 538.8c-1.5 1.5-2.4 3.3-2.8 5.3l-29.5 168.2a33.5 33.5 0 009.4 29.8c6.6 6.4 14.9 9.9 23.8 9.9zm67.4-174.4L687.8 215l73.3 73.3-362.7 362.6-88.9 15.7 15.6-89zM880 836H144c-17.7 0-32 14.3-32 32v36c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-36c0-17.7-14.3-32-32-32z\\"></path></svg></span></div><span aria-hidden=\\"true\\" style=\\"position: fixed; display: block; left: 0px; top: 0px; z-index: -9999; visibility: hidden; pointer-events: none; word-break: keep-all; white-space: nowrap;\\">lg</span><span aria-hidden=\\"true\\" style=\\"position: fixed; display: block; left: 0px; top: 0px; z-index: -9999; visibility: hidden; pointer-events: none; width: 0px; white-space: normal; margin: 0px; padding: 0px;\\"><span aria-hidden=\\"true\\">...</span><div role=\\"button\\" tabindex=\\"0\\" class=\\"ant-typography-edit\\" aria-label=\\"Edit\\" style=\\"border: 0px; background: transparent; padding: 0px; line-height: inherit; display: inline-block;\\"><span role=\\"button\\" aria-label=\\"edit\\" class=\\"anticon anticon-edit\\"><svg viewBox=\\"64 64 896 896\\" focusable=\\"false\\" data-icon=\\"edit\\" width=\\"1em\\" height=\\"1em\\" fill=\\"currentColor\\" aria-hidden=\\"true\\"><path d=\\"M257.7 752c2 0 4-.2 6-.5L431.9 722c2-.4 3.9-1.3 5.3-2.8l423.9-423.9a9.96 9.96 0 000-14.1L694.9 114.9c-1.9-1.9-4.4-2.9-7.1-2.9s-5.2 1-7.1 2.9L256.8 538.8c-1.5 1.5-2.4 3.3-2.8 5.3l-29.5 168.2a33.5 33.5 0 009.4 29.8c6.6 6.4 14.9 9.9 23.8 9.9zm67.4-174.4L687.8 215l73.3 73.3-362.7 362.6-88.9 15.7 15.6-89zM880 836H144c-17.7 0-32 14.3-32 32v36c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-36c0-17.7-14.3-32-32-32z\\"></path></svg></span></div></span></div></div></div>"`;
exports[`components/Agents/ListTable should render EditableTitle component with curren title 1`] = `"<div><div style=\\"width: 550px;\\"><div class=\\"ant-typography ant-typography-primary ant-typography-ellipsis ant-typography-single-line css-dev-only-do-not-override-nnuwmp\\" style=\\"padding-left: 14px; max-width: 500px; padding-top: 18px;\\" aria-label=\\"title test\\">title test<div role=\\"button\\" tabindex=\\"0\\" class=\\"ant-typography-edit\\" aria-label=\\"Edit\\" style=\\"border: 0px; background: transparent; padding: 0px; line-height: inherit; display: inline-block;\\"><span role=\\"button\\" aria-label=\\"edit\\" class=\\"anticon anticon-edit\\"><svg viewBox=\\"64 64 896 896\\" focusable=\\"false\\" data-icon=\\"edit\\" width=\\"1em\\" height=\\"1em\\" fill=\\"currentColor\\" aria-hidden=\\"true\\"><path d=\\"M257.7 752c2 0 4-.2 6-.5L431.9 722c2-.4 3.9-1.3 5.3-2.8l423.9-423.9a9.96 9.96 0 000-14.1L694.9 114.9c-1.9-1.9-4.4-2.9-7.1-2.9s-5.2 1-7.1 2.9L256.8 538.8c-1.5 1.5-2.4 3.3-2.8 5.3l-29.5 168.2a33.5 33.5 0 009.4 29.8c6.6 6.4 14.9 9.9 23.8 9.9zm67.4-174.4L687.8 215l73.3 73.3-362.7 362.6-88.9 15.7 15.6-89zM880 836H144c-17.7 0-32 14.3-32 32v36c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-36c0-17.7-14.3-32-32-32z\\"></path></svg></span></div><span aria-hidden=\\"true\\" style=\\"position: fixed; display: block; left: 0px; top: 0px; z-index: -9999; visibility: hidden; pointer-events: none; font-size: 0px; word-break: keep-all; white-space: nowrap;\\">lg</span><span aria-hidden=\\"true\\" style=\\"position: fixed; display: block; left: 0px; top: 0px; z-index: -9999; visibility: hidden; pointer-events: none; font-size: 0px; width: 0px; white-space: normal; margin: 0px; padding: 0px;\\"><span aria-hidden=\\"true\\">...</span><div role=\\"button\\" tabindex=\\"0\\" class=\\"ant-typography-edit\\" aria-label=\\"Edit\\" style=\\"border: 0px; background: transparent; padding: 0px; line-height: inherit; display: inline-block;\\"><span role=\\"button\\" aria-label=\\"edit\\" class=\\"anticon anticon-edit\\"><svg viewBox=\\"64 64 896 896\\" focusable=\\"false\\" data-icon=\\"edit\\" width=\\"1em\\" height=\\"1em\\" fill=\\"currentColor\\" aria-hidden=\\"true\\"><path d=\\"M257.7 752c2 0 4-.2 6-.5L431.9 722c2-.4 3.9-1.3 5.3-2.8l423.9-423.9a9.96 9.96 0 000-14.1L694.9 114.9c-1.9-1.9-4.4-2.9-7.1-2.9s-5.2 1-7.1 2.9L256.8 538.8c-1.5 1.5-2.4 3.3-2.8 5.3l-29.5 168.2a33.5 33.5 0 009.4 29.8c6.6 6.4 14.9 9.9 23.8 9.9zm67.4-174.4L687.8 215l73.3 73.3-362.7 362.6-88.9 15.7 15.6-89zM880 836H144c-17.7 0-32 14.3-32 32v36c0 4.4 3.6 8 8 8h784c4.4 0 8-3.6 8-8v-36c0-17.7-14.3-32-32-32z\\"></path></svg></span></div></span></div></div></div>"`;
Loading

0 comments on commit 60acaac

Please sign in to comment.