Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add optional version information to footer (#258) #265

Merged
merged 1 commit into from
Nov 13, 2024

Conversation

frano-m
Copy link
Contributor

@frano-m frano-m commented Nov 13, 2024

Closes #258.

image image image

Config Updates

  • add constants
  • config.gitHubUrl, and
  • config.layout.footer.versionInfo
const BUILD_DATE = process.env.NEXT_PUBLIC_BUILD_DATE;
const GIT_HUB_REPO_URL = "https://github.com/DataBiosphere/data-browser";
const GIT_HASH = process.env.NEXT_PUBLIC_GIT_HASH;
const VERSION = process.env.NEXT_PUBLIC_VERSION;
        versionInfo: C.VersionInfo({
          versionInfo: {
            buildDate: BUILD_DATE,
            catalog,
            gitHash: GIT_HASH,
            version: VERSION,
          },
        }),
      },

@NoopDog NoopDog merged commit 7a245ca into main Nov 13, 2024
2 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Add optional version information to footer
3 participants