Client: Update group table version

This commit is contained in:
Aleksandr Lushkin 2024-08-20 13:15:44 +02:00
parent f3a749b6dd
commit efa815e146
2 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ export const TableVersions = Object.freeze({
Files: "3",
People: "3",
Trash: "4",
Groups: "5",
Groups: "6",
InsideGroup: "6",
Recent: "1",
});

View File

@ -30,9 +30,9 @@ import { withTranslation } from "react-i18next";
import { TableHeader } from "@docspace/shared/components/table";
import { Events } from "@docspace/shared/enums";
import { TableVersions } from "SRC_DIR/helpers/constants";
const TABLE_VERSION = "5";
const TABLE_COLUMNS = `groupsTableColumns_ver-${TABLE_VERSION}`;
const TABLE_COLUMNS = `groupsTableColumns_ver-${TableVersions.Groups}`;
class GroupsTableHeader extends React.Component {
constructor(props) {