Skip to content

Commit ed542c7

Browse files
authored
Merge pull request #2 from wukis/patch-1
Fixes sorting by time column
2 parents 3bfb2e9 + ed93c52 commit ed542c7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

php-error-log-viewer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ public function ajax_filesize() {
293293
<md-table-row slot="md-table-row" slot-scope="{ item }">
294294
<!-- <md-table-cell md-label="ID" md-sort-by="id" md-numeric>{{ item.id }}</md-table-cell> -->
295295
<md-table-cell :error="item.cls" md-label="Count" md-sort-by="cnt">{{ item.cnt }}</md-table-cell>
296-
<md-table-cell :error="item.cls" style="min-width:140px" md-label="Time" md-sort-by="t">{{ item.time }}</md-table-cell>
296+
<md-table-cell :error="item.cls" style="min-width:140px" md-label="Time" md-sort-by="time">{{ item.time }}</md-table-cell>
297297
<!-- <md-table-cell :error="item.cls" md-label="cls" md-sort-by="cls">{{ item.cls }}</md-table-cell> -->
298298
<md-table-cell class="message" md-label="Message" md-sort-by="msg" ><pre v-html="item.msg">{{ item.msg }}</pre></md-table-cell>
299299
</md-table-row>

0 commit comments

Comments
 (0)