We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbe91f5 commit aa32e09Copy full SHA for aa32e09
1 file changed
saltgui/static/scripts/panels/Options.js
@@ -331,9 +331,18 @@ export class OptionsPanel extends Panel {
331
td.innerText = this._parseAndFormat(name, value);
332
}
333
334
+ if (category === "session" && name === "start") {
335
+ this.updateExpiresInterval = window.setInterval(() => {
336
+ // just redo the whole text-block
337
+ // nr-digits may have changed
338
+ OptionsPanel._enhanceSessionStart(td, value, sessionStart);
339
+ }, 1000);
340
+ }
341
if (category === "session" && name === "expire") {
342
this.updateExpiresInterval = window.setInterval(() => {
343
// just redo the whole text-block
344
+ // expiry interval always changes
345
+ // nr-digits may also have changed
346
OptionsPanel._enhanceSessionExpire(td, value, sessionStart);
347
}, 1000);
348
0 commit comments