diff --git a/Lantean.QBTMud/wwwroot/css/app.css b/Lantean.QBTMud/wwwroot/css/app.css index 30cdad5..66eb52b 100644 --- a/Lantean.QBTMud/wwwroot/css/app.css +++ b/Lantean.QBTMud/wwwroot/css/app.css @@ -197,7 +197,7 @@ code { .content-panel__body > .mud-tabs { flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column; padding-top: 0; margin-top: 0; } .content-panel__body > .mud-tabs .mud-tabs-tabbar { margin-bottom: 0; } .content-panel__body > .mud-tabs .mud-tabs-panels { flex: 1 1 auto; min-height: 0; display: flex; flex-direction: column; overflow: hidden; padding-top: 0; margin-top: -1px; border-top: none; } -.content-panel__body > .mud-tabs .mud-tab-panel > .mud-tab-panel-content { flex: 1 1 auto; min-height: 0; overflow: auto; } +.content-panel__body .mud-tabs .mud-tabs-panels .mud-tab-panel { overflow: auto; } .torrent-list .mud-table-container, .file-list .mud-table-container, diff --git a/Lantean.QBitTorrentClient/Models/TorrentProperties.cs b/Lantean.QBitTorrentClient/Models/TorrentProperties.cs index 7453e5b..8a00221 100644 --- a/Lantean.QBitTorrentClient/Models/TorrentProperties.cs +++ b/Lantean.QBitTorrentClient/Models/TorrentProperties.cs @@ -14,7 +14,7 @@ namespace Lantean.QBitTorrentClient.Models long downloadLimit, long downloadSpeed, long downloadSpeedAverage, - int estimatedTimeOfArrival, + long estimatedTimeOfArrival, long lastSeen, int connections, int connectionsLimit, @@ -104,7 +104,7 @@ namespace Lantean.QBitTorrentClient.Models public long DownloadSpeedAverage { get; } [JsonPropertyName("eta")] - public int EstimatedTimeOfArrival { get; } + public long EstimatedTimeOfArrival { get; } [JsonPropertyName("last_seen")] public long LastSeen { get; }