We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c812091 commit 7ae0697Copy full SHA for 7ae0697
1 file changed
src/status-bar-items/mob-status-bar-item.ts
@@ -42,7 +42,7 @@ export class MobStatusBarItem {
42
clearInterval(this._lastSetInterval);
43
this._lastSetInterval = null;
44
}
45
-
+
46
this._statusBarItem.text = `$(${this._props.icon}) ${this._props.name}`;
47
this._statusBarItem.show();
48
@@ -59,7 +59,7 @@ export class MobStatusBarItem {
59
this._lastSetInterval = setInterval(function () {
60
var date = new Date(0);
61
date.setSeconds(seconds);
62
- var timeString = date.toISOString().substr(11, 8);
+ var timeString = date.toISOString().substring(11, 19);
63
64
self._statusBarItem.text = `${timeString}`;
65
0 commit comments