Skip to content

Commit

Permalink
Clean up icon imports
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed May 10, 2024
1 parent 79ae093 commit c7e840e
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions client/src/components/History/Content/Dataset/DatasetActions.vue
Original file line number Diff line number Diff line change
@@ -1,14 +1,6 @@
<script setup lang="ts">
import { library } from "@fortawesome/fontawesome-svg-core";
import {
faBug,
faChartBar,
faInfoCircle,
faLink,
faQuestion,
faRedo,
faSitemap,
} from "@fortawesome/free-solid-svg-icons";
import { faBug, faChartBar, faInfoCircle, faLink, faRedo, faSitemap } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome";
import { BButton } from "bootstrap-vue";
import { computed } from "vue";
Expand All @@ -23,7 +15,7 @@ import { type ItemUrls } from ".";
import DatasetDownload from "@/components/History/Content/Dataset/DatasetDownload.vue";
library.add(faBug, faChartBar, faInfoCircle, faLink, faQuestion, faRedo, faSitemap);
library.add(faBug, faChartBar, faInfoCircle, faLink, faRedo, faSitemap);
interface Props {
item: HDADetailed;
Expand Down

0 comments on commit c7e840e

Please sign in to comment.