Display filesize as base 2 (KiB instead of KB)

This commit is contained in:
Kloon ImKloon 2023-10-19 10:50:11 +02:00
parent bd3c1941ff
commit 46989b5370
No known key found for this signature in database
GPG Key ID: CCF1C86A995C5B6A
4 changed files with 10 additions and 4 deletions

View File

@ -37,7 +37,7 @@
<script>
import { enableThumbs } from "@/utils/constants";
import { mapMutations, mapGetters, mapState } from "vuex";
import { filesize } from "filesize";
import { filesize } from "@/utils";
import moment from "moment";
import { files as api } from "@/api";
import * as upload from "@/utils/upload";

View File

@ -81,7 +81,7 @@
<script>
import { mapState, mapGetters } from "vuex";
import { filesize } from "filesize";
import { filesize } from "@/utils";
import moment from "moment";
import { files as api } from "@/api";
@ -142,7 +142,7 @@ export default {
try {
const hash = await api.checksum(link, algo);
// eslint-disable-next-line
event.target.innerHTML = hash
event.target.innerHTML = hash;
} catch (e) {
this.$showError(e);
}

View File

@ -0,0 +1,6 @@
import { partial } from "filesize";
/**
* Formats filesize as KiB/MiB/...
*/
export const filesize = partial({ base: 2 });

View File

@ -182,7 +182,7 @@
<script>
import { mapState, mapMutations, mapGetters } from "vuex";
import { pub as api } from "@/api";
import { filesize } from "filesize";
import { filesize } from "@/utils";
import moment from "moment";
import HeaderBar from "@/components/header/HeaderBar.vue";