diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 45c6e71c..b042e18d 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -133,7 +133,7 @@ jobs: if [ "$IS_PRE_RELEASE" = "true" ]; then EXTRA_ARGS="--tag next" fi - npm publish $EXTRA_ARGS + npm publish $EXTRA_ARGS --tag previous env: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} VERSION: ${{ needs.check_if_version_upgraded.outputs.to_version }} diff --git a/src/lib/pages/LoginConfigTotp.tsx b/src/lib/pages/LoginConfigTotp.tsx index 79d1535e..4de8ba45 100644 --- a/src/lib/pages/LoginConfigTotp.tsx +++ b/src/lib/pages/LoginConfigTotp.tsx @@ -29,7 +29,7 @@ export default function LoginConfigTotp(props: PageProps {totp.policy.supportedApplications.map(app => ( -
  • {msg(app as MessageKeyBase)}
  • +
  • {msg(app as MessageKeyBase) == undefined ? app : msg(app as MessageKeyBase)}
  • ))}