Skip to content

Commit 764a6b1

Browse files
authored
Merge pull request #51 from netzeronow/main
2 parents 0d0d63e + 602a386 commit 764a6b1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

resources/js/pages/Configure.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ export default {
225225
// Reset all of the mappings and any custom values
226226
for (let {name, attribute} of fields) {
227227
this.mappings[attribute] = "";
228-
this.values = "";
228+
this.values = {};
229229
}
230230
231231
// For each field of the resource, try to find a matching heading and pre-assign

resources/js/pages/Review.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
</BasicButton>
5757
<div v-show="showFailureData[rowIndex]">
5858
<div v-for="(value, key) in problem.values">
59-
{{ config.map[key] }} &rightarrow; {{ key }} :
59+
{{ config.mappings[key] }} &rightarrow; {{ key }} :
6060
<code>
6161
{{ value }}
6262
<i v-if="! value">null</i>
@@ -112,7 +112,7 @@
112112
</BasicButton>
113113
<div v-show="showErrorData[rowIndex]">
114114
<div v-for="(value, key) in problem.values">
115-
{{ config.map[key] }} &rightarrow; {{ key }} :
115+
{{ config.mappings[key] }} &rightarrow; {{ key }} :
116116
<code>
117117
{{ value }}
118118
<i v-if="! value">null</i>

0 commit comments

Comments
 (0)