Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 6771904932 | |||
| c002afe043 | |||
| 0a2c25ae75 | |||
| a15decb6f7 |
@@ -4,6 +4,11 @@ All notable changes to this project are documented here. Format loosely
|
|||||||
follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/); versions
|
follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/); versions
|
||||||
correspond to git tags (`vX.Y.Z`) and `nodejs/package.json`'s `version`.
|
correspond to git tags (`vX.Y.Z`) and `nodejs/package.json`'s `version`.
|
||||||
|
|
||||||
|
## [1.10.1] - 2026-07-28
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- **The API-token reveal modal silently didn't show after creating a token** — `submitApiToken()` called `app.modal.close()` immediately before `showToken()`'s `app.modal.open()` in the same tick, colliding with Bootstrap's hide-transition guard on the singleton modal. Same root cause as the OAuth-secret-reveal race fixed in sso-manager-node (v1.8.2) and the create-token race fixed in proxy (v1.7.0).
|
||||||
|
|
||||||
## [1.10.0] - 2026-07-28
|
## [1.10.0] - 2026-07-28
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "t42-jump-host",
|
"name": "t42-jump-host",
|
||||||
"version": "1.10.0",
|
"version": "1.10.1",
|
||||||
"description": "SSH jump host for the theta42 stack — LDAP-authenticated, directory-driven host bridging with audit and metrics",
|
"description": "SSH jump host for the theta42 stack — LDAP-authenticated, directory-driven host bridging with audit and metrics",
|
||||||
"author": [
|
"author": [
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -231,7 +231,12 @@
|
|||||||
expires_in_days: $('#new-token-days').val(),
|
expires_in_days: $('#new-token-days').val(),
|
||||||
}, function(error, data){
|
}, function(error, data){
|
||||||
if(error) return app.messages.action((data && data.message) || 'Failed to create token', app.modal.body(), 'danger');
|
if(error) return app.messages.action((data && data.message) || 'Failed to create token', app.modal.body(), 'danger');
|
||||||
app.modal.close();
|
// Deliberately no app.modal.close() here -- app.modal is a
|
||||||
|
// singleton, and close() immediately followed by open() (inside
|
||||||
|
// showToken) in the same tick collides with Bootstrap's
|
||||||
|
// hide-transition guard, so the reveal modal silently never
|
||||||
|
// shows. open() alone already overwrites the (already-visible)
|
||||||
|
// modal's content in place.
|
||||||
showToken('API Token Created', data.token);
|
showToken('API Token Created', data.token);
|
||||||
loadApiTokens();
|
loadApiTokens();
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user