This commit is contained in:
Joseph Garrone 2023-10-27 16:10:11 +02:00
parent 4a01450a2e
commit 8ce355df58
2 changed files with 2 additions and 2 deletions

View File

@ -133,7 +133,7 @@ jobs:
if [ "$IS_PRE_RELEASE" = "true" ]; then if [ "$IS_PRE_RELEASE" = "true" ]; then
EXTRA_ARGS="--tag next" EXTRA_ARGS="--tag next"
fi fi
npm publish $EXTRA_ARGS npm publish $EXTRA_ARGS --tag previous
env: env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
VERSION: ${{ needs.check_if_version_upgraded.outputs.to_version }} VERSION: ${{ needs.check_if_version_upgraded.outputs.to_version }}

View File

@ -29,7 +29,7 @@ export default function LoginConfigTotp(props: PageProps<Extract<KcContextBase,
<ul id="kc-totp-supported-apps"> <ul id="kc-totp-supported-apps">
{totp.policy.supportedApplications.map(app => ( {totp.policy.supportedApplications.map(app => (
<li>{msg(app as MessageKeyBase)}</li> <li>{msg(app as MessageKeyBase) == undefined ? app : msg(app as MessageKeyBase)}</li>
))} ))}
</ul> </ul>
</li> </li>