diff options
| author | Trim21 <trim21.me@gmail.com> | 2024-12-27 11:23:29 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-26 19:23:29 -0800 |
| commit | 0594006c8118fab4389597b7850eb5950dccab51 (patch) | |
| tree | fb8d9110494c8346911c5cc5b742e22fe4a402f1 | |
| parent | ab1984a852fb6c30ff98dd1ff80ed98845022ae6 (diff) | |
| download | seaweedfs-0594006c8118fab4389597b7850eb5950dccab51.tar.xz seaweedfs-0594006c8118fab4389597b7850eb5950dccab51.zip | |
use same time format in volume volume UI and filter UI (#6395)
use same time format in volume server UI with filter UI
| -rw-r--r-- | weed/server/volume_server_ui/volume.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/server/volume_server_ui/volume.html b/weed/server/volume_server_ui/volume.html index de7f967db..05fbb7b0a 100644 --- a/weed/server/volume_server_ui/volume.html +++ b/weed/server/volume_server_ui/volume.html @@ -185,7 +185,7 @@ <td>{{ .Collection }}</td> <td>{{ bytesToHumanReadable .ShardSize }}</td> <td>{{ .ShardIdList }}</td> - <td>{{ .CreatedAt.Format "02 Jan 06 15:04 -0700" }}</td> + <td>{{ .CreatedAt.Format "2006-01-02 15:04" }}</td> </tr> {{ end }} </tbody> |
