Skip to content

Commit

Permalink
fix: styling
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiTenno committed Oct 29, 2018
1 parent 5ad7ae8 commit 4111ebc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
"restart": "pm2 delete genesis && pm2 start genesis.json && pm2 logs genesis",
"stop": "pm2 delete genesis",
"uninstall": "pm2 kill && rm -rf node_modules/ && npm uninstall -g pm2",
"update:genesis": "pm2 delete genesis && git pull && npm restart || npm start"
"update:genesis": "pm2 delete genesis && git pull && npm restart || npm start",
"lint": "eslint main.js src/",
"lint:fix": "eslint main.js src/ --fix"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/embeds/EarthCycleEmbed.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const BaseEmbed = require('./BaseEmbed.js');
const { timeDeltaToString, fromNow, assetBase } = require('../CommonFunctions.js');

const ostron = `${assetBase}/img/ostron-banner.png`;
const earth = `${assetBase}/img/earth-planet.png`
const earth = `${assetBase}/img/earth-planet.png`;

/**
* Generates Earth cycle embeds
Expand Down
2 changes: 1 addition & 1 deletion src/embeds/FrameEmbed.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class FrameEmbed extends BaseEmbed {
super();

this.thumbnail = {
url: `${assetBase}/img/arcane.png`
url: `${assetBase}/img/arcane.png`,
};
if (frame && typeof frame !== 'undefined') {
this.title = frame.name;
Expand Down
2 changes: 1 addition & 1 deletion src/embeds/SyndicateEmbed.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class SyndicateEmbed extends BaseEmbed {
name: 'No such Syndicate',
value: `Valid values: ${values.join(', ')}`,
}];
this.url = `${wikiBase}/Syndicates`
this.url = `${wikiBase}/Syndicates`;
this.thumbnail = {
url: syndicateThumb,
};
Expand Down

0 comments on commit 4111ebc

Please sign in to comment.