Skip to content

Commit d9b891a

Browse files
committed
'Env' & 'Module' prefixes
1 parent 162d5ba commit d9b891a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lib/runtime/environments.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ export function consumeStatusBar (statusBar) {
3232
const hideTile = () => tileDom.style.display = 'none'
3333
const updateTile = (proj) => {
3434
if (!proj) return
35-
dom.innerText = projectName = proj.name
35+
projectName = proj.name
36+
dom.innerText = 'Env: ' + projectName
3637
projectPath = proj.path
3738
showTile()
3839
}

lib/runtime/modules.coffee

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ module.exports =
162162
if main is @follow
163163
return @updateView @lastEditorModule
164164
@dom.style.display = ''
165-
@mainView.innerText = main or 'Main'
165+
@mainView.innerText = 'Module: ' + (main or 'Main')
166166
if sub
167167
@subView.innerText = sub
168168
@dividerView.innerText = '/'

0 commit comments

Comments
 (0)