Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
LOFAR
Manage
Activity
Members
Labels
Plan
Issues
Wiki
Jira issues
Open Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RadioObservatory
LOFAR
Commits
411c9b0a
Commit
411c9b0a
authored
1 year ago
by
Reinder Kraaij
Browse files
Options
Downloads
Patches
Plain Diff
Resolve
TMSS-2810
"Reverse compatibily mode bac to 17"
parent
1ce4b3d0
No related branches found
No related tags found
1 merge request
!1170
Resolve TMSS-2810 "Reverse compatibily mode bac to 17"
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
SAS/TMSS/frontend/tmss_webapp/sonar-project.properties
+3
-3
3 additions, 3 deletions
SAS/TMSS/frontend/tmss_webapp/sonar-project.properties
SAS/TMSS/frontend/tmss_webapp/src/index.js
+8
-5
8 additions, 5 deletions
SAS/TMSS/frontend/tmss_webapp/src/index.js
with
11 additions
and
8 deletions
SAS/TMSS/frontend/tmss_webapp/sonar-project.properties
+
3
−
3
View file @
411c9b0a
...
...
@@ -6,14 +6,14 @@ sonar.sources=SAS/TMSS/frontend/tmss_webapp/src
# The sonar tag is different per language and coverage report:
# - sonar.javascript.lcov.reportPaths for junit: npm run test:ci (see package.json)
# - sonar.python.coverage.reportPaths=coverage.xml for python: 'python -m coverage run --source="." manage.py test && python -m coverage xml && python -m coverage report'
sonar.javascript.lcov.reportPaths
=
coverage/lcov.info
sonar.javascript.lcov.reportPaths
=
build/gnucxx11_opt/SAS/TMSS/frontend/tmss_webapp/
coverage/lcov.info
#pipeline fails when the quality gate does not pass the standards
sonar.qualitygate.wait
=
true
sonar.qualitygate.timeout
=
1000
sonar.coverage.exclusions
=
**/*.test.js,**/setupTests.js
# This is the name and version displayed in the SonarCloud UI.
#sonar.projectName=TMSS Frontend
#sonar.projectVersion=1.0
# Encoding of the source code. Default is default system encoding
#
sonar.sourceEncoding
=
UTF-8
\ No newline at end of file
#sonar.sourceEncoding=UTF-8
This diff is collapsed.
Click to expand it.
SAS/TMSS/frontend/tmss_webapp/src/index.js
+
8
−
5
View file @
411c9b0a
import
'
react-app-polyfill/ie11
'
;
import
React
from
'
react
'
;
import
ReactDOM
from
'
react-dom
/client
'
;
import
ReactDOM
from
'
react-dom
'
;
import
'
./index.css
'
;
import
App
from
'
./App
'
;
import
*
as
serviceWorker
from
'
./serviceWorker
'
;
import
'
cleave.js/dist/cleave
'
;
ReactDOM
.
render
(
// <React.StrictMode>
<
App
/>
,
// </React.StrictMode>,
document
.
getElementById
(
'
root
'
)
);
const
root
=
ReactDOM
.
createRoot
(
document
.
getElementById
(
'
root
'
));
root
.
render
(
<
App
/>
)
// If you want your app to work offline and load faster, you can change
// unregister() to register() below. Note this comes with some pitfalls.
// Learn more about service workers: https://bit.ly/CRA-PWA
serviceWorker
.
unregister
();
serviceWorker
.
unregister
();
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment