diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 68b288d..1bf191f 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -3,7 +3,7 @@ name: Running Code Coverage on: [push, pull_request] jobs: - build: + Test: runs-on: ubuntu-latest # Service containers to run with `runner-job` services: diff --git a/components/linkinthebiopage.js b/components/linkinthebiopage.js index 54b8ae4..45d66f9 100644 --- a/components/linkinthebiopage.js +++ b/components/linkinthebiopage.js @@ -136,6 +136,7 @@ export default function Home({ margin: 0; padding: 15px; height: 100%; + min-height: 100vh; width: 100%; font-family: ${fontFamily}; background: ${bgColor}; diff --git a/components/linksform.js b/components/linksform.js index 2c7b2eb..fdd1a33 100644 --- a/components/linksform.js +++ b/components/linksform.js @@ -63,6 +63,7 @@ const LinksForm = ({ data, update, pagedataid, loading }) => { ); })} +
); diff --git a/scripts/migrate.js b/scripts/migrate.js index 0b6649f..f956d5c 100644 --- a/scripts/migrate.js +++ b/scripts/migrate.js @@ -43,4 +43,4 @@ async function migrate() { migrate() .then(() => process.exit()) - .then((err) => console.error(err)); + .catch((err) => console.error(err));