diff --git a/backend/src/db.mjs b/backend/src/db.mjs index 033d2a3..fc3e2f0 100644 --- a/backend/src/db.mjs +++ b/backend/src/db.mjs @@ -46,7 +46,7 @@ export class DB { * @param {!string} site url. * @param {!string} page path. * @param {!ObjType} comment. - * @return {!ObjType} inserted comment. + * @return {!Array} page comments. */ insertPageComment(site_url, path, comment) { return insertPageComment(this.my_db, site_url, path, comment); @@ -123,7 +123,7 @@ function insertPageComment(db, site_url, path, comment) { @message, @reply_to RETURNING - id as id, + id, user, user_website, message, @@ -131,7 +131,11 @@ function insertPageComment(db, site_url, path, comment) { reply_to ; `); - return stmt.all(object); + stmt.all(object); + + // return all comments because a new comment might have been added + // since the user loaded the page. + return getPageComments(db, site_url, path); } function getPageComments(db, site_url, path) { diff --git a/frontend/dist/index.html b/frontend/dist/index.html deleted file mode 100644 index 759b804..0000000 --- a/frontend/dist/index.html +++ /dev/null @@ -1,19 +0,0 @@ - - -
- - - -