diff --git a/.github/codeql/config-codeql.yml b/.github/codeql/config-codeql.yml deleted file mode 100644 index 33605d5189..0000000000 --- a/.github/codeql/config-codeql.yml +++ /dev/null @@ -1,3 +0,0 @@ ---- -paths: - - ./** diff --git a/.github/workflows/codeql.yaml b/.github/workflows/codeql.yaml index 0acfe87efb..0194b64608 100644 --- a/.github/workflows/codeql.yaml +++ b/.github/workflows/codeql.yaml @@ -56,7 +56,6 @@ jobs: uses: github/codeql-action/init@v2 with: languages: ${{ matrix.language }} - config-file: .github/codeql/config-codeql.yml # If you wish to specify custom queries, you can do so here or in a config file. # By default, queries listed here will override any specified in a config file. # Prefix the list here with "+" to use these queries and those in the config file. diff --git a/packages/client/src/components/panels/EmbeddingPanel/index.tsx b/packages/client/src/components/panels/EmbeddingPanel/index.tsx index 804ceed675..39999cb4c1 100644 --- a/packages/client/src/components/panels/EmbeddingPanel/index.tsx +++ b/packages/client/src/components/panels/EmbeddingPanel/index.tsx @@ -404,6 +404,7 @@ const EmbeddingPanelComponent = (props: EmbeddingPanelProps) => { {t("Files:EmbeddingSettings")} diff --git a/packages/client/src/pages/Home/Section/AccountsBody/InsideGroup/TableView/TableRow.js b/packages/client/src/pages/Home/Section/AccountsBody/InsideGroup/TableView/TableRow.js index 8787670f37..c1dc44138b 100644 --- a/packages/client/src/pages/Home/Section/AccountsBody/InsideGroup/TableView/TableRow.js +++ b/packages/client/src/pages/Home/Section/AccountsBody/InsideGroup/TableView/TableRow.js @@ -386,6 +386,8 @@ const InsideGroupTableRow = (props) => { modernView manualWidth={"fit-content"} isLoading={isLoading} + optionStyle={{ maxWidth: "400px" }} + textOverflow /> ); diff --git a/packages/client/src/pages/Home/Section/AccountsBody/People/TableView/TableRow.js b/packages/client/src/pages/Home/Section/AccountsBody/People/TableView/TableRow.js index b22d445392..5470ca2ad7 100644 --- a/packages/client/src/pages/Home/Section/AccountsBody/People/TableView/TableRow.js +++ b/packages/client/src/pages/Home/Section/AccountsBody/People/TableView/TableRow.js @@ -390,6 +390,8 @@ const PeopleTableRow = (props) => { modernView manualWidth={"fit-content"} isLoading={isLoading} + optionStyle={{ maxWidth: "400px" }} + textOverflow /> ); diff --git a/packages/client/src/pages/Home/Section/Body/RowsView/FilesRowContent.js b/packages/client/src/pages/Home/Section/Body/RowsView/FilesRowContent.js index ce989fb593..8132db3ff6 100644 --- a/packages/client/src/pages/Home/Section/Body/RowsView/FilesRowContent.js +++ b/packages/client/src/pages/Home/Section/Body/RowsView/FilesRowContent.js @@ -283,7 +283,7 @@ const FilesRowContent = ({ return value; } - if (!fileExst && !contentLength && !providerKey && !isMobile()) + if (!fileExst && !contentLength && !providerKey) return `${foldersCount} ${t("Translations:Folders")} | ${filesCount} ${t( "Translations:Files", )}`; @@ -323,15 +323,17 @@ const FilesRowContent = ({ {!isRoom && !isRooms && quickButtons} - - {mainInfo} - + {mainInfo && ( + + {mainInfo} + + )} props.theme?.login?.navBackground}; - svg { - path:last-child { - fill: ${(props) => props.theme.client?.home?.logoColor}; - } - } - @media ${mobile} { display: flex; diff --git a/packages/shared/components/image-editor/PreviewTile/index.tsx b/packages/shared/components/image-editor/PreviewTile/index.tsx index b10d0ae049..a46e250ccb 100644 --- a/packages/shared/components/image-editor/PreviewTile/index.tsx +++ b/packages/shared/components/image-editor/PreviewTile/index.tsx @@ -49,14 +49,13 @@ const PreviewTile = ({
{tags.length ? ( - {}} /> + ) : ( {}} /> )}
diff --git a/packages/shared/components/tags/Tags.types.ts b/packages/shared/components/tags/Tags.types.ts index 5f2740800c..25e30c2486 100644 --- a/packages/shared/components/tags/Tags.types.ts +++ b/packages/shared/components/tags/Tags.types.ts @@ -53,5 +53,5 @@ export interface TagsProps { /** Accepts css style */ style?: React.CSSProperties; /** Accepts the function that is called when the tag is selected */ - onSelectTag: (tag?: object) => void; + onSelectTag?: (tag?: object) => void; }