forked from halilc4/tabbyspaces
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpaneEditor.component.pug
More file actions
38 lines (34 loc) · 981 Bytes
/
Copy pathpaneEditor.component.pug
File metadata and controls
38 lines (34 loc) · 981 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//- Inline pane editor panel (no modal overlay)
.pane-details
.pane-details-header
span.pane-details-title
i.fas.fa-terminal
| Pane Configuration
.pane-form
.form-group
label Name
input.form-control(
type='text',
[(ngModel)]='pane.name',
placeholder='Optional pane name'
)
.form-group
label Profile
select.form-control([(ngModel)]='pane.profileId')
option(value='') -- Select Profile --
option(*ngFor='let profile of profiles', [value]='profile.id')
| {{ profile.name }}
.form-group
label Working Directory
input.form-control(
type='text',
[(ngModel)]='pane.cwd',
placeholder='C:\\path\\to\\project'
)
.form-group
label Startup Command
input.form-control(
type='text',
[(ngModel)]='pane.startupCommand',
placeholder='e.g., npm run dev'
)