Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/components/ProcessingResults.vue
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,15 @@
</v-btn>
</v-expansion-panel-text>
</v-expansion-panel>
<v-expansion-panel title="Processes" class="panel processes">
<v-expansion-panel-text>
<div>
<div v-for="project in projects" class="group" :key="project">
<v-label class="text-capitalize mb-1">{{ project }}</v-label>
</div>
</div>
Comment thread
m-mohr marked this conversation as resolved.
Outdated
</v-expansion-panel-text>
</v-expansion-panel>
</v-expansion-panels>
</div>

Expand Down Expand Up @@ -97,6 +106,7 @@ import { ref, onMounted, onUnmounted, onBeforeUnmount, computed } from 'vue'
import useMap from '../composables/useMap'
import useNotifier from '../composables/useNotifier'
import useAreaOfInterest from '../composables/useAreaOfInterest'
import useProcessing from '../composables/useProcessing'
import PropertiesDisplay from './PropertiesDisplay.vue'
import { mdiChevronDown, mdiTarget } from '@mdi/js'
import { type Feature } from 'geojson'
Expand All @@ -112,6 +122,7 @@ const emit = defineEmits<{
const { map, handleMapClick, vectorLayer, selectedFeature, hidePropertiesBox } = useMap()
const { clearResults, returnToResults, fitToExtent } = useAreaOfInterest()
const { showInfo, showError } = useNotifier()
const { projects } = useProcessing()

const isOpen = ref(true)
const limit = ref(50)
Expand Down
1 change: 1 addition & 0 deletions src/composables/useProcessing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -282,5 +282,6 @@ export default function useProcessing() {
isProcessing,
processBatch,
processSmallArea,
projects
}
}