We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bbf2ba9 commit 7e47674Copy full SHA for 7e47674
src/components/cylc/workspace/Toolbar.vue
@@ -266,6 +266,8 @@ subscription Workflow ($workflowId: ID) {
266
267
fragment WorkflowData on Workflow {
268
id
269
+ host
270
+ owner
271
status
272
statusMsg
273
nEdgeDistance
@@ -375,6 +377,9 @@ export default {
375
377
},
376
378
statusAndVersion () {
379
let ret = upperFirst(this.currentWorkflow.node.statusMsg || '')
380
+ if (this.currentWorkflow.node.host && this.currentWorkflow.node.owner) {
381
+ ret += ` • ${this.currentWorkflow.node.owner}@${this.currentWorkflow.node.host}`
382
+ }
383
if (this.currentWorkflow.node.cylcVersion) {
384
ret += ` • Cylc ${this.currentWorkflow.node.cylcVersion}`
385
}
0 commit comments