瀏覽代碼

Fix incorrect default values and server response in list creation UI

Kailash Nadh 5 年之前
父節點
當前提交
1ef1c5a61c
共有 2 個文件被更改,包括 5 次插入5 次删除
  1. 1 1
      cmd/lists.go
  2. 4 4
      frontend/src/views/ListForm.vue

+ 1 - 1
cmd/lists.go

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

+ 4 - 4
frontend/src/views/ListForm.vue

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