Skip to content

Commit

Permalink
update model on server when changing focus of any field in the table
Browse files Browse the repository at this point in the history
  • Loading branch information
bmaranville committed Apr 24, 2024
1 parent 2265f6b commit 7f7d82f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion refl1d/webview/client/src/components/SimpleBuilder.vue
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ function dragEnd() {
</tr>
</thead>
<tbody>
<tr v-for="(layer, key) in sortedLayers" :key="key">
<tr v-for="(layer, key) in sortedLayers" :key="key" @blur.capture="send_model">
<td
@dragstart="dragStart(key, $event)"
@dragover="dragOver(key, $event)"
Expand Down

0 comments on commit 7f7d82f

Please sign in to comment.