Skip to content

Commit

Permalink
fix ByteInput import
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuaboud committed Nov 15, 2024
1 parent e7499f2 commit 3c8d8c5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@
</template>

<script setup lang="ts">
import ByteInput from "@45drives/houston-common/houston-common-ui/lib/components/ByteInput.vue";
import { Pool } from "@/tabs/iSCSI/types/cluster/Pool";
import type { ISCSIDriverClusteredServer } from "@/tabs/iSCSI/types/drivers/ISCSIDriverClusteredServer";
import type { ProcessError } from "@45drives/houston-common-lib";
Expand All @@ -91,6 +90,7 @@ import {
validationSuccess,
validationError,
wrapActions,
ByteInput,
} from "@45drives/houston-common-ui";
import { ok, ResultAsync, safeTry } from "neverthrow";
import { inject, ref, type Ref } from "vue";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,8 @@
<script setup lang="ts">
import { RadosBlockDevice } from "@/tabs/iSCSI/types/cluster/RadosBlockDevice";
import { LogicalVolume } from "@/tabs/iSCSI/types/cluster/LogicalVolume";
import { CardContainer, InputLabelWrapper, useTempObjectStaging, validationError, ValidationResultView, ValidationScope, validationSuccess, wrapActions } from "@45drives/houston-common-ui";
import { CardContainer, InputLabelWrapper, useTempObjectStaging, validationError, ValidationResultView, ValidationScope, validationSuccess, wrapActions, ByteInput } from "@45drives/houston-common-ui";
import { ResultAsync, okAsync } from "neverthrow";
import ByteInput from "@45drives/houston-common/houston-common-ui/lib/components/ByteInput.vue";
import { inject, ref } from "vue";
import type { ISCSIDriverClusteredServer } from "@/tabs/iSCSI/types/drivers/ISCSIDriverClusteredServer";
import type { ProcessError } from "@45drives/houston-common-lib";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ import {
CardContainer, InputLabelWrapper, pushNotification, Notification, useTempObjectStaging, validationError, ValidationResultView,
ValidationScope,
validationSuccess,
wrapActions
wrapActions,
ByteInput,
} from "@45drives/houston-common-ui";
import ByteInput from "@45drives/houston-common/houston-common-ui/lib/components/ByteInput.vue";
import { ref } from "vue";
const _ = cockpit.gettext;
Expand Down Expand Up @@ -80,4 +80,4 @@ const { validationResult: fileSizeValidationResult } = validationScope.useValida
return validationSuccess();
});
</script>
</script>

0 comments on commit 3c8d8c5

Please sign in to comment.