diff --git a/apps/genetics/.prettierrc b/apps/genetics/.prettierrc
new file mode 100644
index 000000000..15590d4d4
--- /dev/null
+++ b/apps/genetics/.prettierrc
@@ -0,0 +1,6 @@
+{
+ "singleQuote": true,
+ "trailingComma": "es5",
+ "arrowParens": "avoid",
+ "tabWidth": 2
+}
diff --git a/apps/genetics/package.json b/apps/genetics/package.json
index d2f0e4f78..5b2e21ca2 100644
--- a/apps/genetics/package.json
+++ b/apps/genetics/package.json
@@ -3,7 +3,7 @@
"version": "0.1.2",
"license": "Apache-2.0",
"bugs": {
- "url": "https://github.com/opentargets/platform/issues",
+ "url": "https://github.com/opentargets/ot-ui-apps/issues",
"email": "support@targetvalidation.org"
},
"dependencies": {
@@ -80,7 +80,7 @@
"lint-staged": ">=10",
"nanoid-cli": "^1.1.0",
"nightwatch": "^1.1.13",
- "prettier": "1.15.1",
+ "prettier": "^2.7.1",
"rollup-plugin-polyfill-node": "^0.9.0",
"sass": "^1.49.10",
"source-map-explorer": "^2.0.0",
diff --git a/apps/genetics/src/ot-ui-components/components/Splash.jsx b/apps/genetics/src/ot-ui-components/components/Splash.jsx
index 31657f6da..43e240c3b 100644
--- a/apps/genetics/src/ot-ui-components/components/Splash.jsx
+++ b/apps/genetics/src/ot-ui-components/components/Splash.jsx
@@ -13,11 +13,14 @@ const styles = theme => ({
position: 'absolute',
zIndex: -1,
},
+ svg: {
+ position: 'fixed',
+ },
});
const DATA = [];
const uniformGenerator = d3.randomUniform();
-for (let i = 0; i < 500; i++) {
+for (let i = 0; i < 250; i++) {
DATA.push([uniformGenerator(), uniformGenerator()]);
}
@@ -36,7 +39,7 @@ class Splash extends React.Component {
const { classes, measureRef } = this.props;
return (
-
);
}
@@ -62,7 +65,7 @@ class Splash extends React.Component {
pointsVoronoi
.enter()
.append('path')
- .attr('stroke', 'white')
+ .attr('stroke', 'rgba(232, 232, 232, 0.6)')
.attr('stroke-opacity', 0.3)
.attr('fill', 'none')
.merge(pointsVoronoi)
diff --git a/apps/platform/package.json b/apps/platform/package.json
index 5d2eef661..f7b280a00 100644
--- a/apps/platform/package.json
+++ b/apps/platform/package.json
@@ -3,7 +3,7 @@
"version": "0.1.2",
"license": "Apache-2.0",
"bugs": {
- "url": "https://github.com/opentargets/platform/issues",
+ "url": "https://github.com/opentargets/ot-ui-apps/issues",
"email": "support@targetvalidation.org"
},
"dependencies": {
diff --git a/package.json b/package.json
index 30b3f00b8..dfe119772 100644
--- a/package.json
+++ b/package.json
@@ -2,10 +2,15 @@
"name": "ot-ui-apps",
"version": "0.0.1",
"private": true,
+ "license": "Apache-2.0",
"workspaces": [
"apps/*",
"packages/*"
],
+ "bugs": {
+ "url": "https://github.com/opentargets/ot-ui-apps/issues",
+ "email": "support@targetvalidation.org"
+ },
"scripts": {
"build": "turbo run build",
"build:no-cache": "turbo run build --parallel --no-cache",
diff --git a/yarn.lock b/yarn.lock
index 37802bbda..598a92e06 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -11578,11 +11578,6 @@ prepend-http@^1.0.0:
resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
integrity sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==
-prettier@1.15.1:
- version "1.15.1"
- resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.15.1.tgz#06c67106afb1b40e74b002353b2079cc7e0e67bf"
- integrity sha512-4rgV2hyc/5Pk0XHH4VjJWHRgVjgRbpMfLQjREAhHBtyW1UvTFkjJEsueGYNYYZd9mn97K+1qv0EBwm11zoaSgA==
-
prettier@^2.5.1:
version "2.6.2"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.6.2.tgz#e26d71a18a74c3d0f0597f55f01fb6c06c206032"