File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
extensions/cache/deployment/src/main/resources/dev-ui Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,12 @@ export class QwcCacheCaches extends LitElement {
18
18
19
19
// Component style
20
20
static styles = css `
21
+ .datatable {
22
+ height: 100%;
23
+ }
24
+ .caches {
25
+ height: 100%;
26
+ }
21
27
.button {
22
28
background-color: transparent;
23
29
cursor: pointer;
@@ -74,6 +80,7 @@ export class QwcCacheCaches extends LitElement {
74
80
_renderCacheTable ( ) {
75
81
let caches = [ ...this . _caches . values ( ) ] ;
76
82
return html `
83
+ < div class ="caches ">
77
84
< vaadin-grid .items ="${ caches } " class ="datatable " theme ="no-border ">
78
85
< vaadin-grid-column auto-width
79
86
header ="Name "
@@ -90,7 +97,8 @@ export class QwcCacheCaches extends LitElement {
90
97
${ columnBodyRenderer ( this . _actionRenderer , [ ] ) }
91
98
resizable >
92
99
</ vaadin-grid-column >
93
- </ vaadin-grid > ` ;
100
+ </ vaadin-grid >
101
+ </ div > ` ;
94
102
}
95
103
96
104
_renderCacheKeys ( ) {
Original file line number Diff line number Diff line change @@ -12,10 +12,14 @@ import '@vaadin/grid/vaadin-grid-sort-column.js';
12
12
export class QwcCacheKeys extends LitElement {
13
13
14
14
static styles = css `
15
+ .datatable {
16
+ height: 100%;
17
+ }
15
18
.keys {
16
19
padding-left: 20px;
17
20
justify-content: space-between;
18
21
padding-right: 20px;
22
+ height: 100%;
19
23
}
20
24
21
25
.keys h4 {
You can’t perform that action at this time.
0 commit comments