Adjustment in the CSS to show/hide pause button

This commit is contained in:
Khanh Ngo 2020-04-22 21:39:35 +07:00
parent dbb85cb759
commit 43012a720c
No known key found for this signature in database
GPG key ID: D5FAA6A16150E49E
2 changed files with 6 additions and 4 deletions

View file

@ -166,7 +166,7 @@ func SetClientStatus() echo.HandlerFunc {
client.Enabled = status
db.Write("clients", clientID, &client)
log.Infof("Change client %s to status %b", client.ID, status)
log.Infof("Changed client %s enabled status to %v", client.ID, status)
return c.JSON(http.StatusOK, jsonHTTPResponse{true, "ok"})
}