querysub 0.534.0 → 0.535.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "querysub",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.535.0",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"note1": "note on node-forge fork, see https://github.com/digitalbazaar/forge/issues/744 for details",
|
|
@@ -71,8 +71,8 @@
|
|
|
71
71
|
"node-forge": "https://github.com/sliftist/forge#e618181b469b07bdc70b968b0391beb8ef5fecd6",
|
|
72
72
|
"pako": "^2.1.0",
|
|
73
73
|
"peggy": "^5.0.6",
|
|
74
|
-
"sliftutils": "^1.7.
|
|
75
|
-
"socket-function": "^1.2.
|
|
74
|
+
"sliftutils": "^1.7.18",
|
|
75
|
+
"socket-function": "^1.2.24",
|
|
76
76
|
"terser": "^5.31.0",
|
|
77
77
|
"typenode": "^6.6.1",
|
|
78
78
|
"typesafecss": "^0.32.0",
|
|
@@ -433,19 +433,20 @@ export class ServiceDetailPage extends qreact.Component {
|
|
|
433
433
|
<div
|
|
434
434
|
className={css.hbox(12)}
|
|
435
435
|
>
|
|
436
|
-
<div className={css.hbox(5)}>
|
|
436
|
+
<div className={css.hbox(5).wrap}>
|
|
437
437
|
<div>
|
|
438
438
|
{screenName}
|
|
439
439
|
</div>
|
|
440
440
|
<div>
|
|
441
441
|
{serviceInfo?.nodeId || machineId} ({machineInfo.info["getExternalIP"]})
|
|
442
442
|
</div>
|
|
443
|
-
{Object.keys(variables).length > 0 &&
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
443
|
+
{Object.keys(variables).length > 0 && <>
|
|
444
|
+
{Object.entries(variables).map(([name, value]) =>
|
|
445
|
+
<span className={css.fontFamily("monospace")}>
|
|
446
|
+
<span className={css.fontWeight("bold").colorhsl(210, 60, 35)}>{name}</span>=<span className={css.colorhsl(110, 60, 35)}>{value}</span>
|
|
447
|
+
</span>
|
|
448
|
+
)}
|
|
449
|
+
</>}
|
|
449
450
|
</div>
|
|
450
451
|
{isDisabled && (
|
|
451
452
|
<div className={css.colorhsl(0, 0, 30)}>
|