-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* MI-1845: Added tooltip for pull request and issue links * MI-1845: Done review fixes * Added the verbose flag to the npm install command in Makefile to fix failing CI * Fixed lint errors * Added regex for url valiation and constants for link types and states * Fixed linting errors * Removed unnecessary escape character * Minor code improvement * Fixed CI lint error * Added babel config for optional chaining * Added missing trailing comma * Fixed typo * [MI-1919] Fixes issue in link tooltip 1. Heading and description text overlays in tooltip when crosses a certain limit * [MI-1995] Fixed failing CI in link tooltip PR 1. Fixed the error "'gitlab.com' can be anywhere in the URL, and arbitrary hosts may come before or after it." * Fixed spacing around 'on' using js instead of using css * [MI-2755] Review fixes on gitlab PR #301 * [MI 2837]: Done the review fixes of a gitlab PR #301 (#30) * [MI-2837] Review fixes on gitlab PR #301 * [MI-2837]: Review fixes done 1. Written the test cases properly * [MI-2837]: Review fixes done 1. Improved code readability 2. Improved code consistency * [MI-2837]: Review fixes done 1. Improved code quality * [MI-2937]: Added EOF * [MI-2837]: Review fixes done 1. Improved code readability --------- Co-authored-by: raghavaggarwal2308 <raghav.aggarwal@brightscout.com> * [MI-2963]: Did the review fixes of gitlab PR #301 (#32) * [MI-2963]: Did the review fixes of gitlab PR #301 1.Improved the unit tests 2.Improved the code readability * [MI-2963]: Fixed linting error * [MI-2963]: Review fixes done 1. Improved unit tests * [MI-2963]: Review fixes done 1. Added default in switch cases * [MI-2963]: Review fixes done 1. Dispatched the error * [MI-2963]: Review fixes done 1. Improved code readability * [MI-2963]:Review fixes done 1. Improved code readability * [MI-2963]: Review fxes done 1. Improved the description of a unit test * [MI-2986] Review fixes on Gitlab PR #301(Add link tooltip) 1. Replaced the deprecated icon component. 2. Added a return statement to avoid unnecessary code execution. --------- Co-authored-by: raghavaggarwal2308 <raghav.aggarwal@brightscout.com> Co-authored-by: Nityanand Rai <107465508+Nityanand13@users.noreply.github.com>
- Loading branch information
1 parent
a7bba27
commit b5184fa
Showing
18 changed files
with
9,489 additions
and
3,030 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"presets": ["@babel/preset-env","@babel/preset-react"], | ||
"plugins": ["@babel/plugin-proposal-class-properties"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"transform": { | ||
"^.+\\.[t|j]sx?$": "babel-jest" | ||
}, | ||
"moduleNameMapper": { | ||
"^.+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "identity-obj-proxy", | ||
"^.+\\.(css|less|scss)$": "identity-obj-proxy", | ||
"^.*i18n.*\\.(json)$": "<rootDir>/tests/i18n_mock.json", | ||
"^bundle-loader\\?lazy\\!(.*)$": "$1" | ||
} | ||
} |
Oops, something went wrong.