diff --git a/client/src/project/Project.present.js b/client/src/project/Project.present.js index 8b52479735..9c161c8238 100644 --- a/client/src/project/Project.present.js +++ b/client/src/project/Project.present.js @@ -64,11 +64,12 @@ import { ThrottledTooltip } from "../utils/components/Tooltip"; import EntityHeader from "../utils/components/entityHeader/EntityHeader"; import { SshDropdown, SshModal } from "../utils/components/ssh/ssh"; import { useProjectJsonLdQuery } from "../features/projects/ProjectKgApi"; - -import "./Project.css"; import { StartSessionLink } from "../utils/components/entities/Buttons"; import GitLabConnectButton, { externalUrlToGitLabIdeUrl } from "./components/GitLabConnect"; +import "./Project.css"; +import rkIconStartWithOptions from "../styles/icons/start-with-options.svg"; + function filterPaths(paths, blacklist) { // Return paths to do not match the blacklist of regexps. const result = paths.filter(p => blacklist.every(b => p.match(b) === null)); @@ -502,7 +503,10 @@ function StartSessionButton(props) { <> - Start with options + + + Start with options + diff --git a/client/src/styles/icons/start-with-options.svg b/client/src/styles/icons/start-with-options.svg new file mode 100644 index 0000000000..6e4ba230a6 --- /dev/null +++ b/client/src/styles/icons/start-with-options.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/client/src/utils/components/ssh/ssh.tsx b/client/src/utils/components/ssh/ssh.tsx index c9788a03f7..41ea86ebee 100644 --- a/client/src/utils/components/ssh/ssh.tsx +++ b/client/src/utils/components/ssh/ssh.tsx @@ -55,11 +55,9 @@ function SshDropdown({ fullPath, gitUrl }: SshDropdownProps) { }; return ( -
- ) => handleClick(e)}> - Start SSH session - -
+ ) => handleClick(e)}> + Start SSH session + ); }