Skip to content

Commit

Permalink
Add non-working submit enrichtments button
Browse files Browse the repository at this point in the history
  • Loading branch information
stefandesu committed Aug 8, 2024
1 parent e0f010f commit 1a22c81
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,10 @@ watch(() => state.ppn, async (ppn) => {
console.timeEnd(`Load PPN ${ppn}`)
})
function submitEnrichments() {
alert("Funktion nicht implementiert.")
}
const examples = [
"389598534",
"1830228498",
Expand Down Expand Up @@ -476,6 +480,13 @@ const examples = [
<template v-if="state.ppn && state.loadingPhase > 4 && selectedSuggestionsPica">
<h2>Ausgewählte Anreicherungen in PICA</h2>
<pre style="font-weight: 400; font-size: 14px; overflow-x: scroll;"><code>{{ selectedSuggestionsPica }}</code></pre>
<p>
<button
class="button"
@click="submitEnrichments">
Auswahl in Datenbank eintragen
</button>
</p>
</template>
</div>
</main>
Expand Down

0 comments on commit 1a22c81

Please sign in to comment.