Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
daniluk4000 committed Nov 15, 2024
1 parent 3ea1033 commit d286aed
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/components/map/aircraft/MapAircraftList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ const config = useRuntimeConfig();
const hoveredAircraft = ref<number | null>(null);
const isManualHover = ref(false);
const showAircraftLabel = ref<number[]>([]);
const isMobileOrTablet = useIsMobileOrTablet();
// The next 3 functions are used to get data to and from the airport dashboard page. When an aircraft is selected it is sent to the airport dashboard so we can open the pilot overlay. We also receive the event from the dashboard when an aircraft is clicked in the dashboard, we then select it on the map.
function receiveMessage(event: MessageEvent) {
Expand Down
1 change: 0 additions & 1 deletion src/components/map/filters/settings/MapSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,6 @@ const importedPresetName = defineModel('importedPresetName', {
});
const store = useStore();
const isMobile = useIsMobile();
const tab = ref('layers');
const { refresh } = await useLazyAsyncData(async () => {
Expand Down
1 change: 0 additions & 1 deletion src/pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ import { boundingExtent, buffer, getCenter } from 'ol/extent';
import { toDegrees } from 'ol/math';
import type { Coordinate } from 'ol/coordinate';
import CommonLogo from '~/components/common/basic/CommonLogo.vue';
import { DoubleClickZoom } from 'ol/interaction';
const emit = defineEmits({
map(map: Ref<Map | null>) {
Expand Down

0 comments on commit d286aed

Please sign in to comment.