Skip to content

Commit d36d7ef

Browse files
committed
Added git ignores
1 parent 8902cf6 commit d36d7ef

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ package-lock.json
77
pids
88
*.pid
99
*.seed
10+
*.eot
11+
*.woff*
12+
*.eot
13+
*.ttf
14+
*.html
1015

1116
# Directory for instrumented libs generated by jscoverage/JSCover
1217
lib-cov

.nojekyll

Whitespace-only changes.

app.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"test": "echo \"Error: no test specified\" && exit 1",
88
"build": "mkdir -p ./build && cp ./src/index.html ./build/ && webpack -p --config webpack.production.config.js",
99
"start": "PORT=8081 node dev-server.js",
10-
"deploy": "npm run build && cp -r build/* . && touch .nojekyll && git add . && git commit -m 'Deploy to GitHub Pages' && git push origin HEAD:gh-pages"
10+
"deploy": "npm run build && cp -r build/* . && git add . && git commit -m 'Deploy to GitHub Pages' && git push origin HEAD:gh-pages"
1111
},
1212
"author": "David Kobalia",
1313
"license": "MIT",

src/galaxy/nodeDetails/degreeWindowViewModel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ function getDegreeName(connectionType, count) {
4040

4141
function dependencyName(connectionType, count) {
4242
if (connectionType === 'in') {
43-
return count === 1 ? 'solution' : 'dependents';
43+
return count === 1 ? 'solution' : 'solutions';
4444
}
4545
return count === 1 ? 'soltuion' : 'dependencies';
4646
}

src/galaxy/store/graphSepcific/graphSpecificInfo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function PackagesGraph(graphName) {
2323
DefaultGraph.call(this, graphName);
2424

2525
this.getInDegreeLabel = function getInDegreeLabel(inDegreeValue) {
26-
return inDegreeValue === 1 ? 'dependent' : 'dependents';
26+
return inDegreeValue === 1 ? 'solution' : 'solutions';
2727
};
2828

2929
this.getOutDegreeLabel = function getInDegreeLabel(outDegreeValue) {

0 commit comments

Comments
 (0)