File tree Expand file tree Collapse file tree 4 files changed +20
-7
lines changed Expand file tree Collapse file tree 4 files changed +20
-7
lines changed Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ class DependsDotViewProvider implements vscode.WebviewViewProvider {
198
198
private openRecipe ( recipeName : string ) {
199
199
recipeName = recipeName . replace ( / \r / g, '' ) ;
200
200
let recipeFound = false ;
201
- this . bitbakeProjectScanner . scanResult . _recipes . forEach ( ( recipe : ElementInfo ) => {
201
+ this . bitbakeProjectScanner . activeScanResult . _recipes . forEach ( ( recipe : ElementInfo ) => {
202
202
// TODO fix resolving -native recipes (put that logic in a utility function) (could be shared with BitbakeRecipesView.getChildren)
203
203
// TODO fix resolving some packages like xz or busybox (only when in the bottom row?)
204
204
if ( recipe . name === recipeName ) {
Original file line number Diff line number Diff line change 9
9
background : var (--vscode-list-hoverBackground );
10
10
cursor : pointer;
11
11
}
12
+
13
+ .inputHorizontal {
14
+ display : flex;
15
+ flex-direction : row; /* Arrange items horizontally */
16
+ padding : 0 ;
17
+ }
Original file line number Diff line number Diff line change @@ -41,10 +41,14 @@ <h3>Select an image <b>Recipe</b> to analyze:</h3>
41
41
42
42
< div >
43
43
< h3 > You want to know:</ h3 >
44
- < ul id ="depType ">
45
- < li > < input type ="radio " name ="dependencyType " value ="why " checked > < h3 > < b > Why</ b > a package is included</ h3 > </ li >
46
- < li > < input type ="radio " name ="dependencyType " value ="depends "> < h3 > What it < b > Depends</ b > on</ h3 > </ li >
47
- </ ul >
44
+ < div class ="inputHorizontal "> </ div >
45
+ < input type ="radio " id ="why " name ="dependencyType " value ="why " checked >
46
+ < label for ="why "> < h3 > < b > Why</ b > a package is included</ h3 > </ label >
47
+ </ div >
48
+ < div class ="horizontal ">
49
+ < input type ="radio " id ="depends " name ="dependencyType " value ="depends ">
50
+ < label for ="depends "> < h3 > What it < b > Depends</ b > on</ h3 > </ label >
51
+ </ div >
48
52
</ div >
49
53
50
54
< div >
@@ -57,9 +61,10 @@ <h3>Select which <b>Package</b> you want to examine:</h3>
57
61
</ div >
58
62
59
63
< div >
64
+ < hr >
60
65
< h3 > Results:</ h3 >
61
- </ div >
62
- < div id =" results " >
66
+ < div id =" results " >
67
+ </ div >
63
68
</ div >
64
69
65
70
< script nonce ="<%= nonce %> " src ="<%= scriptUri %> "> </ script >
Original file line number Diff line number Diff line change 19
19
h6 ,
20
20
p ,
21
21
ol ,
22
+ input ,
23
+ label ,
22
24
ul {
23
25
margin : 0 ;
24
26
padding : 0 ;
You can’t perform that action at this time.
0 commit comments