Skip to content

Commit

Permalink
client linting
Browse files Browse the repository at this point in the history
  • Loading branch information
BryonLewis committed Apr 3, 2024
1 parent d185fcb commit 2ab0e3b
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
5 changes: 4 additions & 1 deletion client/src/components/BatchUploadRecording.vue
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,10 @@ export default defineComponent({
</v-expansion-panel-title>
<v-expansion-panel-text>
<v-row>
<v-btn @click="getBatchMetadata()" color="secondary">
<v-btn
color="secondary"
@click="getBatchMetadata()"
>
Get Guano Metadata
</v-btn>
</v-row>
Expand Down
2 changes: 0 additions & 2 deletions client/src/components/RecordingInfoDialog.vue
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
<script lang="ts">
import { defineComponent, onMounted, ref, Ref, watch } from 'vue';
import { getRecording, Recording } from '../api/api';
import MapLocation from './MapLocation.vue';
import RecordingInfoDisplay from './RecordingInfoDisplay.vue';
export default defineComponent({
components: {
MapLocation,
RecordingInfoDisplay
},
props: {
Expand Down
11 changes: 7 additions & 4 deletions client/src/components/RecordingInfoDisplay.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import { defineComponent, onMounted, PropType, ref, Ref, watch } from 'vue';
import { getRecording, Recording } from '../api/api';
import { defineComponent, PropType } from 'vue';
import { Recording } from '../api/api';
import MapLocation from './MapLocation.vue';
Expand All @@ -19,7 +19,7 @@ export default defineComponent({
}
},
emits: ['close'],
setup(props) {
setup() {
return {
};
Expand Down Expand Up @@ -61,7 +61,10 @@ export default defineComponent({
<v-spacer />
</v-row>

<div v-if="recordingInfo.site_name" class="mt-5">
<div
v-if="recordingInfo.site_name"
class="mt-5"
>
<v-row><h3>Guano Metadata</h3></v-row>
<v-row v-if="recordingInfo.site_name">
<div><b>Site Name:</b><span>{{ recordingInfo.site_name }}</span></div>
Expand Down
Binary file removed scripts/3773_SE_Array_S1_20210615_222235_319.wav
Binary file not shown.
Binary file removed scripts/__pycache__/guano.cpython-311.pyc
Binary file not shown.

0 comments on commit 2ab0e3b

Please sign in to comment.