diff options
author | Jonas <cez81@users.noreply.github.com> | 2017-02-25 04:12:46 +0100 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2017-02-25 11:12:46 +0800 |
commit | 9ad3a0798973c8580b763b4a8b466382734bfacd (patch) | |
tree | 7ab7a3a08b14fc34294f09e02782319bc8e03673 /templates | |
parent | 44827698e2515330eedbef3e5a604899ac1b7ce8 (diff) | |
download | gitea-9ad3a0798973c8580b763b4a8b466382734bfacd.tar.gz gitea-9ad3a0798973c8580b763b4a8b466382734bfacd.zip |
Fix for #1037: Corrected process ID placeholder to PID from Pid (#1048)
Signed-off-by: Jonas Östanbäck <jonas.ostanback@gmail.com>
Diffstat (limited to 'templates')
-rw-r--r-- | templates/admin/monitor.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/admin/monitor.tmpl b/templates/admin/monitor.tmpl index fa87078cc3..d74c885e9e 100644 --- a/templates/admin/monitor.tmpl +++ b/templates/admin/monitor.tmpl @@ -49,7 +49,7 @@ <tbody> {{range .Processes}} <tr> - <td>{{.Pid}}</td> + <td>{{.PID}}</td> <td>{{.Description}}</td> <td>{{DateFmtLong .Start}}</td> <td>{{TimeSince .Start $.Lang}}</td> |