Skip to content

Commit

Permalink
Fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Dec 24, 2024
1 parent 4e9bb9a commit 3cab5ff
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 8 deletions.
21 changes: 18 additions & 3 deletions api/web/src/components/CloudTAK/FeatView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,32 @@
<TablerIconButton
title='Zoom To'
@click='zoomTo'
><IconZoomPan :size='32' stroke='1' /></TablerIconButton>
>
<IconZoomPan
:size='32'
stroke='1'
/>
</TablerIconButton>
<TablerIconButton
v-if='mode === "default"'
title='Raw View'
@click='mode = "raw"'
><IconCode :size='32' stroke='1'/></TablerIconButton>
>
<IconCode
:size='32'
stroke='1'
/>
</TablerIconButton>
<TablerIconButton
v-if='mode === "raw"'
title='Default View'
@click='mode = "default"'
><IconX :size='32' stroke='1' /></TablerIconButton>
>
<IconX
:size='32'
stroke='1'
/>
</TablerIconButton>
</div>
</div>

Expand Down
7 changes: 6 additions & 1 deletion api/web/src/components/CloudTAK/QueryView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,12 @@
<TablerIconButton
title='Refresh'
@click='fetch'
><IconRefresh :size='32' stroke='1'/></TablerIconButton>
>
<IconRefresh
:size='32'
stroke='1'
/>
</TablerIconButton>
</div>
</div>
</div>
Expand Down
9 changes: 5 additions & 4 deletions api/web/src/components/Data.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,11 @@
title='Edit'
@click='router.push(`/connection/${route.params.connectionid}/data/${data.id}/edit`)'
>
<IconSettings
:size='32'
stroke='1'
/>
<IconSettings
:size='32'
stroke='1'
/>
</TablerIconButton>
</div>
</div>
</div>
Expand Down

0 comments on commit 3cab5ff

Please sign in to comment.