Skip to content

Commit

Permalink
PB-1318 : fixed imports
Browse files Browse the repository at this point in the history
  • Loading branch information
Sami Nouidri authored and sami-nouidri-swisstopo committed Jan 30, 2025
1 parent 84bfa93 commit 882de5f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/modules/drawing/useKmlDataManagement.composable.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { computed, inject, ref } from 'vue'
import { useI18n } from 'vue-i18n'
import { useStore } from 'vuex'

import { createKml, getKmlUrl, updateKml, deleteKml } from '@/api/files.api'
import { createKml, deleteKml, getKmlUrl, updateKml } from '@/api/files.api'
import KMLLayer from '@/api/layers/KMLLayer.class'
import { IS_TESTING_WITH_CYPRESS } from '@/config/staging.config'
import { DrawingState, generateKmlString } from '@/modules/drawing/lib/export-utils'
Expand Down
2 changes: 1 addition & 1 deletion src/utils/components/AppVersion.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function openGithubRepoLink() {

<template>
<div class="app-version" :class="{ 'app-version-prod': isProd }" data-cy="app-version">
<span @click="openGithubRepoLink" class="githubIcon"
<span class="githubIcon" @click="openGithubRepoLink"
><font-awesome-icon :icon="['fab', 'github']"
/></span>
<span class="app-version-link" @click="openGithubReleaseLink"> {{ appVersion }}</span>
Expand Down

0 comments on commit 882de5f

Please sign in to comment.