Skip to content

Commit adc5dae

Browse files
authored
Fix wrong width in empty Log overview
If you have an empty log the icon and text is not centered. Signed-off-by: Dennis1993 <Dennis1993@users.noreply.github.com>
1 parent 9f67610 commit adc5dae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Components/LogTable.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ export class LogTable extends Component {
126126

127127
if (rows.length === 0) {
128128
rows = <tr className={style.empty}>
129-
<td colSpan="4">
129+
<td colSpan="6">
130130
<div className="emptycontent">
131131
<div className="icon-filetype-text"/>
132132
<h2>{t('logreader', 'No server logs')}</h2>

0 commit comments

Comments
 (0)