Fix bug with disk size

This commit is contained in:
Mikko Ahlroth 2023-09-01 07:37:29 +03:00
parent b63ee9c41e
commit 67abdef624
2 changed files with 2 additions and 2 deletions

View file

@ -58,7 +58,7 @@
value={disk.used_percent}
max={100}
value-display={"#{disk.used_percent} % of #{humanize_size_si(
disk.total,
disk.total * 1024,
true
)}"}
/>

View file

@ -4,7 +4,7 @@ defmodule Tietopaketti.MixProject do
def project do
[
app: :tietopaketti,
version: "1.1.0",
version: "1.1.1",
elixir: "~> 1.15",
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,