Fix failing to set timestamp in mark query
I accidentally didn't understand how this API works.
This commit is contained in:
parent
5f3fcc2b3e
commit
040ab106b4
3 changed files with 42 additions and 23 deletions
|
|
@ -230,7 +230,7 @@ async function markReport(title: string, status: string) {
|
|||
if (selectedCommunication.value == null) {
|
||||
return;
|
||||
}
|
||||
const url = `${selectedCommunication.value.uri}/${status}`;
|
||||
const url = `${selectedCommunication.value.uri}/mark/${status}`;
|
||||
const result = apiClient.JSONPost(url, {});
|
||||
|
||||
showNotification(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue