Skip to content

Commit

Permalink
Issue/000184/fix checkbox alignment (#186)
Browse files Browse the repository at this point in the history
* fix for vert alignment of checkbox

* added version reporting

Co-authored-by: Kevin <[email protected]>
  • Loading branch information
51ngul4r1ty and singularity15 authored Nov 26, 2020
1 parent f532ccf commit df9e5df
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "atoll",
"version": "0.22.1",
"version": "0.22.2",
"author": {
"name": "Kevin Berry",
"email": "[email protected]"
Expand Down Expand Up @@ -57,7 +57,7 @@
"setup": "ts-node ./scripts/setup.ts"
},
"dependencies": {
"@atoll/shared": "0.22.0",
"@atoll/shared": "0.22.2",
"@flopflip/memory-adapter": "1.6.0",
"@flopflip/react-broadcast": "10.1.11",
"axios": "0.19.2",
Expand Down
14 changes: 14 additions & 0 deletions src/server/api/handlers/root.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,20 @@
import { APPLICATION_JSON } from "@atoll/shared";

export const rootHandler = function(req, res) {
try {
const packageJson = require("../../../../package.json");
res.set(
"X-Atoll-Info",
JSON.stringify({
versions: {
app: packageJson.version,
sharedLib: packageJson.dependencies["@atoll/shared"]
}
})
);
} catch (err) {
console.log(`ERROR REPORTING VERSION INFO: "${err}"`);
}
res.json({
status: 200,
data: {
Expand Down

0 comments on commit df9e5df

Please sign in to comment.