Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Dec 9, 2024
1 parent 2369dd1 commit bf9e8df
Show file tree
Hide file tree
Showing 6 changed files with 38 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ many of the services it provides will initiate AWS API calls with no graceful fa
### Docker Compose

```
docker-compose up --build
docker compose up --build
```

Once the database and API service have built, the server will start on port 5000.
Expand Down
9 changes: 7 additions & 2 deletions api/web/src/components/CloudTAK/Map.vue
Original file line number Diff line number Diff line change
Expand Up @@ -881,8 +881,13 @@ export default {
cotStore.hidden.add(feat.id);
this.updateCOT();
mapStore.draw.addFeatures([feat.as_feature()]);
mapStore.draw.selectFeature(feat.id);
try {
mapStore.draw.addFeatures([feat.as_feature()]);
mapStore.draw.selectFeature(feat.id);
} catch (err) {
mapStore.draw.setMode('static');
throw err
}
},
deleteCOT: async function(cot) {
await cotStore.delete(cot.properties.id)
Expand Down
10 changes: 8 additions & 2 deletions api/web/src/components/CloudTAK/Menu/Videos/VideoLeaseModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,14 @@
v-model='channels'
:limit='1'
/>
<div v-else class='border border-white rounded px-2 py-2'>
<IconAffiliate :size='24' stroke='1'/> <span v-text='editLease.channel'/>
<div
v-else
class='border border-white rounded px-2 py-2'
>
<IconAffiliate
:size='24'
stroke='1'
/> <span v-text='editLease.channel' />
</div>
</div>

Expand Down
7 changes: 6 additions & 1 deletion api/web/src/components/Data/DataGroups.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,12 @@
<TablerIconButton
title='Refresh'
@click='listLayers'
> <IconRefresh :size='32' stroke='1' /></TablerIconButton>
>
<IconRefresh
:size='32'
stroke='1'
/>
</TablerIconButton>
</div>
</div>
<TablerNone
Expand Down
14 changes: 12 additions & 2 deletions api/web/src/components/Data/DataLayer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,21 @@
@click='$router.push(
`/connection/${$route.params.connectionid}/data/${$route.params.dataid}/layer/new`
)'
><IconPlus :size='32' stroke='1' /></TablerIconButton>
>
<IconPlus
:size='32'
stroke='1'
/>
</TablerIconButton>
<TablerIconButton
title='Refresh'
@click='listLayers'
> <IconRefresh :size='32' stroke='1' /></TablerIconButton>
>
<IconRefresh
:size='32'
stroke='1'
/>
</TablerIconButton>
</div>
</div>

Expand Down
5 changes: 4 additions & 1 deletion api/web/src/components/Layer/utils/SchemaModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@
/>
</div>
</div>
<div v-if='!loading' class='modal-body py-4' >
<div
v-if='!loading'
class='modal-body py-4'
>
<TablerSchema
v-model='row'
:schema='schema'
Expand Down

0 comments on commit bf9e8df

Please sign in to comment.