Skip to content

Commit

Permalink
Fix updating
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Nov 25, 2024
1 parent d2f90e3 commit 9851f82
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 80 deletions.
160 changes: 82 additions & 78 deletions api/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions api/web/src/components/CloudTAK/CoTView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -433,6 +433,7 @@
:key='prop'
>
<td v-text='prop' />
<!-- @vue-expect-error Not a KeyOf -->
<td v-text='feat.properties.takv[prop]' />
</tr>
</tbody>
Expand Down
3 changes: 2 additions & 1 deletion api/web/src/components/CloudTAK/util/CoTStyle.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
/>
</div>
</template>
<template v-else-if='feat.geometry.type !== "Point"'>
<template v-else>
<div class='col-12'>
<label class='subheader'>Line Colour</label>
<TablerInput
Expand Down Expand Up @@ -96,6 +96,7 @@

<script setup lang='ts'>
import { watch, ref } from 'vue';
import COT from '../../../../src/stores/base/cot.ts';
import IconSelect from '../../util/IconSelect.vue';
import {
TablerRange,
Expand Down
1 change: 0 additions & 1 deletion api/web/src/stores/base/cot.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import pointOnFeature from '@turf/point-on-feature';
import type { Feature } from './../../types.ts'
import type {
BBox as GeoJSONBBox,
Position as GeoJSONPosition,
Feature as GeoJSONFeature,
Geometry as GeoJSONGeometry,
} from 'geojson'
Expand Down

0 comments on commit 9851f82

Please sign in to comment.