Skip to content

Commit 65c1fc1

Browse files
authored
Merge pull request #775 from nextcloud/Dennis1993-patch-1
Fix wrong width in empty Log overview
2 parents ca99899 + 1dd5e2c commit 65c1fc1

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)