Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lists all parserconfigs #43

Merged
merged 1 commit into from
Mar 14, 2024
Merged
Changes from all commits
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
20 changes: 11 additions & 9 deletions src/components/abilities/CreateEditAbility.vue
Original file line number Diff line number Diff line change
Expand Up @@ -245,15 +245,17 @@ async function deleteAbility() {
.control
input.input(type="text" v-model="executor.parsers[index].module" placeholder="Parser Module")
.field
span Output Source
.control
input.input(type="text" v-model="executor.parsers[index].parserconfigs[0].source" placeholder="Output Source")
.field
.control
input.input(type="text" v-model="executor.parsers[index].parserconfigs[0].edge" placeholder="Output Edge [optional]")
.field
.control
input.input(type="text" v-model="executor.parsers[index].parserconfigs[0].target" placeholder="Output Target [optional]")
span Output Source(s)
.field.has-addons(v-for="(parserconfig, pc_index) of executor.parsers[index].parserconfigs")
.field
.control
input.input(type="text" v-model="executor.parsers[index].parserconfigs[pc_index].source" placeholder="Output Source")
.field
.control
input.input(type="text" v-model="executor.parsers[index].parserconfigs[pc_index].edge" placeholder="Output Edge [optional]")
.field
.control
input.input(type="text" v-model="executor.parsers[index].parserconfigs[pc_index].target" placeholder="Output Target [optional]")
.control
a.button(@click="executor.parsers.splice(index, 1)")
span.icon
Expand Down
Loading