Skip to content

Commit

Permalink
deploy: 1c45b6b
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed May 5, 2024
1 parent 5c34176 commit e73055c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions mjs/question.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -841,6 +841,14 @@ const EditQuestion = {
debounceApi(request.value.body)
}
})

const postJson = $1(`#Post`)?.innerHTML
if (postJson) {
const post = JSON.parse(postJson)
request.value.title = post.title
request.value.body = post.body
request.value.tags = post.tags
}
})

function close() {
Expand Down

0 comments on commit e73055c

Please sign in to comment.