-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove terminal icon from Workbench page #458
Remove terminal icon from Workbench page #458
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The changes done to files in deploy/
, files/
and server/
directories are local to your development setup. Please revert these changes.
.pre-commit-config.yaml
Outdated
@@ -45,23 +45,23 @@ repos: | |||
# stages: [pre-push] | |||
|
|||
- repo: https://github.com/pre-commit/mirrors-prettier | |||
rev: v3.1.0 | |||
rev: v4.0.0-alpha.8 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please select a stage version if it is available.
.pre-commit-config.yaml
Outdated
hooks: | ||
- id: eslint | ||
args: ["--fix"] | ||
files: "^(client|servers/execution/runner|servers/lib)/.*" | ||
stages: [pre-commit] | ||
|
||
- repo: https://github.com/igorshubovych/markdownlint-cli | ||
rev: v0.37.0 | ||
rev: v0.38.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
something like this
.pre-commit-config.yaml
Outdated
hooks: | ||
- id: prettier | ||
args: ["--ignore-path", "../.gitignore", "--write"] | ||
files: '^(client|servers/execution/runner|servers/lib)/.*\.(ts|tsx|css|scss)$' | ||
stages: [pre-commit] | ||
|
||
- repo: https://github.com/pre-commit/mirrors-eslint | ||
rev: v8.54.0 | ||
rev: v9.0.0-alpha.1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please select a stage version if it is available
client/config/dev.js
Outdated
@@ -5,7 +5,7 @@ if (typeof window !== 'undefined') { | |||
REACT_APP_URL_BASENAME: 'dtaas', | |||
REACT_APP_URL_DTLINK: '/lab', | |||
REACT_APP_URL_LIBLINK: '', | |||
REACT_APP_WORKBENCHLINK_TERMINAL: '/terminals/main', | |||
// REACT_APP_WORKBENCHLINK_TERMINAL: '/terminals/main', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you can remove this line in all the config files
@@ -0,0 +1,10 @@ | |||
INFO Accepting connections at http://localhost:4000 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please do not add this file
@@ -1,5 +1,5 @@ | |||
import * as React from 'react'; | |||
import TerminalOutlinedIcon from '@mui/icons-material/TerminalOutlined'; | |||
// import TerminalOutlinedIcon from '@mui/icons-material/TerminalOutlined'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please remove the commented lines
@aryanbhosale Thanks for the PR. Please fix the failing tests. |
Code Climate has analyzed commit 186f0ed and detected 0 issues on this pull request. View more on Code Climate. |
PR #459 addresses the same issue. |
No description provided.