Skip to content

Commit

Permalink
remove unused imports and props
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedhamidawan committed Nov 8, 2024
1 parent 8720c94 commit 46a89a2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 1 addition & 4 deletions client/src/components/Workflow/WorkflowAnnotation.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<script setup lang="ts">
import { library } from "@fortawesome/fontawesome-svg-core";
import { faClock } from "@fortawesome/free-regular-svg-icons";
import { faChevronDown, faChevronUp, faHdd } from "@fortawesome/free-solid-svg-icons";
import { faHdd } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
import { storeToRefs } from "pinia";
import { computed } from "vue";
Expand All @@ -17,8 +16,6 @@ import UtcDate from "../UtcDate.vue";
import WorkflowInvocationsCount from "../Workflow/WorkflowInvocationsCount.vue";
import WorkflowIndicators from "@/components/Workflow/List/WorkflowIndicators.vue";
library.add(faChevronDown, faChevronUp);
interface Props {
workflowId: string;
invocationUpdateTime?: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,11 @@ interface Props {
index?: number;
isSubworkflow?: boolean;
isFullPage?: boolean;
targetHistory: string;
}
const props = withDefaults(defineProps<Props>(), {
index: undefined,
isSubworkflow: false,
targetHistory: "current",
});
const emit = defineEmits<{
Expand Down

0 comments on commit 46a89a2

Please sign in to comment.