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 162d5ba commit d9b891aCopy full SHA for d9b891a
lib/runtime/environments.js
@@ -32,7 +32,8 @@ export function consumeStatusBar (statusBar) {
32
const hideTile = () => tileDom.style.display = 'none'
33
const updateTile = (proj) => {
34
if (!proj) return
35
- dom.innerText = projectName = proj.name
+ projectName = proj.name
36
+ dom.innerText = 'Env: ' + projectName
37
projectPath = proj.path
38
showTile()
39
}
lib/runtime/modules.coffee
@@ -162,7 +162,7 @@ module.exports =
162
if main is @follow
163
return @updateView @lastEditorModule
164
@dom.style.display = ''
165
- @mainView.innerText = main or 'Main'
+ @mainView.innerText = 'Module: ' + (main or 'Main')
166
if sub
167
@subView.innerText = sub
168
@dividerView.innerText = '/'
0 commit comments