Fix incorrect default values and server response in list creation UI

This commit is contained in:
Kailash Nadh 2020-08-22 14:13:13 +05:30
parent 0f055eacb8
commit 1ef1c5a61c
2 changed files with 5 additions and 5 deletions

View File

@ -107,7 +107,7 @@ func handleCreateList(c echo.Context) error {
// Hand over to the GET handler to return the last insertion.
c.SetParamNames("id")
c.SetParamValues(fmt.Sprintf("%d", newID))
return c.JSON(http.StatusOK, handleGetLists(c))
return handleGetLists(c)
}
// handleUpdateList handles list modification.

View File

@ -67,9 +67,9 @@ export default Vue.extend({
// Binds form input values.
form: {
name: '',
type: '',
optin: '',
tags: '',
type: 'private',
optin: 'single',
tags: [],
},
};
},
@ -114,7 +114,7 @@ export default Vue.extend({
},
mounted() {
this.form = { ...this.$props.data };
this.form = { ...this.form, ...this.$props.data };
this.$nextTick(() => {
this.$refs.focus.focus();