File tree Expand file tree Collapse file tree 1 file changed +14
-7
lines changed
src/Frontend/src/components/configuration Expand file tree Collapse file tree 1 file changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ function formatDate(date: string) {
3333 <div class =" col-2" >{{ formatDate(log.date) }}</div >
3434 <div class =" col-1" :class =" `${log.level.toLowerCase()}-color`" >{{ log.level }}</div >
3535 <div class =" col-9" :class =" `${log.level.toLowerCase()}-color`" >
36- <span >{{ log.message }}</span >
36+ <pre >{{ log.message }}</pre >
3737 </div >
3838 </div >
3939 </div >
@@ -55,18 +55,16 @@ function formatDate(date: string) {
5555}
5656
5757.queues-container {
58- max-width : 30em ;
58+ max-width : 100% ;
59+ width : fit-content ;
5960 padding : 0.75rem ;
6061}
6162.queues-container .row {
6263 display : grid ;
63- grid-template-columns : 50 % 50 % ;
64+ grid-template-columns : 5 fr minmax ( 10 em , 1 fr ) ;
6465}
6566.queues-container .row div {
66- overflow : hidden ;
67- text-overflow : ellipsis ;
68- direction : rtl ;
69- text-align : left ;
67+ overflow-wrap : anywhere;
7068}
7169
7270.logs-container {
@@ -80,6 +78,15 @@ function formatDate(date: string) {
8078 border-bottom : 1px solid #ccc ;
8179 margin-bottom : 0.5rem ;
8280}
81+
82+ .logs-container pre {
83+ all : revert ;
84+ margin : 0 ;
85+ font-size : 0.9rem ;
86+ overflow-wrap : break-word ;
87+ text-wrap : auto ;
88+ }
89+
8390.warning-color {
8491 color : var (--bs-warning );
8592}
You can’t perform that action at this time.
0 commit comments