Skip to content

Commit 1dd5e2c

Browse files
Dennis1993nextcloud-command
authored andcommitted
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> Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
1 parent 9f67610 commit 1dd5e2c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

js/logreader-main.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/logreader-main.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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)