X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/f616027fe6cc593b7aec49e38c8d9203a3a35aa4..25216cc7acedc987c26a159f0b640210c0ef101e:/src/common/formatters.ts diff --git a/src/common/formatters.ts b/src/common/formatters.ts index d8228bf5..eeab703d 100644 --- a/src/common/formatters.ts +++ b/src/common/formatters.ts @@ -2,8 +2,8 @@ // // SPDX-License-Identifier: AGPL-3.0 -import { PropertyValue } from "~/models/search-bar"; -import { Vocabulary, getTagKeyLabel, getTagValueLabel } from "~/models/vocabulary"; +import { PropertyValue } from "models/search-bar"; +import { Vocabulary, getTagKeyLabel, getTagValueLabel } from "models/vocabulary"; export const formatDate = (isoDate?: string | null, utc: boolean = false) => { if (isoDate) { @@ -29,7 +29,7 @@ export const formatFileSize = (size?: number | string) => { return `${(size / base).toFixed()} ${unit}`; } } - } + } if ((typeof size === "string" && size === '') || size === undefined) { return ''; }