File tree 3 files changed +20
-15
lines changed
3 files changed +20
-15
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,10 @@ async function renderAdmin(req, res) {
30
30
] ;
31
31
groupsData = groupsData . filter ( g => ! filterGroups . includes ( g . name ) ) ;
32
32
groupsData . sort ( ( a , b ) => b . system - a . system ) ;
33
- res . render ( 'admin/plugins/dev-tracker' , { groups : groupsData } ) ;
33
+ res . render ( 'admin/plugins/dev-tracker' , {
34
+ groups : groupsData ,
35
+ title : '[[dev-tracker:dev-tracker]]' ,
36
+ } ) ;
34
37
}
35
38
36
39
async function getDevTrackerGroups ( ) {
Original file line number Diff line number Diff line change 25
25
"eslint-plugin-import" : " 2.27.5"
26
26
},
27
27
"nbbpm" : {
28
- "compatibility" : " ^3.0 .0"
28
+ "compatibility" : " ^3.2 .0"
29
29
}
30
30
}
Original file line number Diff line number Diff line change 1
- <div class =" row" >
2
- <div class =" col-sm-2 col-12 settings-header" >Settings</div >
3
- <div class =" col-sm-10 col-12" >
4
- <form role =" form" class =" dev-tracker-settings" >
5
- <label class =" form-label" for =" devTrackerGroups" >Select groups you wish to display on the Dev Tracker Page</label >
6
- <select class =" form-control" id =" devTrackerGroups" name =" devTrackerGroups" multiple size =" 20" >
7
- { {{ each groups } }}
8
- <option value =" { ./displayName} " >{ ./displayName} </option >
9
- { {{ end } }}
10
- </select >
11
- </form >
1
+
2
+ <div class =" acp-page-container" >
3
+ <!-- IMPORT admin/partials/settings/header.tpl -->
4
+
5
+ <div class =" row m-0" >
6
+ <div id =" spy-container" class =" col-12 px-0 mb-4" tabindex =" 0" >
7
+ <form role =" form" class =" dev-tracker-settings" >
8
+ <label class =" form-label" for =" devTrackerGroups" >Select groups you wish to display on the Dev Tracker Page</label >
9
+ <select class =" form-control" id =" devTrackerGroups" name =" devTrackerGroups" multiple size =" 20" >
10
+ { {{ each groups } }}
11
+ <option value =" { ./displayName} " >{ ./displayName} </option >
12
+ { {{ end } }}
13
+ </select >
14
+ </form >
15
+ </div >
12
16
</div >
13
17
</div >
14
-
15
- <!-- IMPORT admin/partials/save_button.tpl -->
You can’t perform that action at this time.
0 commit comments