Skip to content

Commit

Permalink
Merge pull request #51 from netzeronow/main
Browse files Browse the repository at this point in the history
  • Loading branch information
simonhamp authored Apr 14, 2023
2 parents 0d0d63e + 602a386 commit 764a6b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/js/pages/Configure.vue
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ export default {
// Reset all of the mappings and any custom values
for (let {name, attribute} of fields) {
this.mappings[attribute] = "";
this.values = "";
this.values = {};
}
// For each field of the resource, try to find a matching heading and pre-assign
Expand Down
4 changes: 2 additions & 2 deletions resources/js/pages/Review.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
</BasicButton>
<div v-show="showFailureData[rowIndex]">
<div v-for="(value, key) in problem.values">
{{ config.map[key] }} &rightarrow; {{ key }} :
{{ config.mappings[key] }} &rightarrow; {{ key }} :
<code>
{{ value }}
<i v-if="! value">null</i>
Expand Down Expand Up @@ -112,7 +112,7 @@
</BasicButton>
<div v-show="showErrorData[rowIndex]">
<div v-for="(value, key) in problem.values">
{{ config.map[key] }} &rightarrow; {{ key }} :
{{ config.mappings[key] }} &rightarrow; {{ key }} :
<code>
{{ value }}
<i v-if="! value">null</i>
Expand Down

0 comments on commit 764a6b1

Please sign in to comment.