mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-07-20 01:21:21 +00:00
fix time
This commit is contained in:
parent
ac5244f120
commit
fd3808406d
@ -115,8 +115,7 @@ async function createTask() {
|
||||
ElMessage.warning("no labels");
|
||||
return;
|
||||
}
|
||||
const date =
|
||||
monitorTime.value === "0" ? appStore.durationRow.end : time.value;
|
||||
const date = monitorTime.value === "0" ? new Date() : time.value;
|
||||
const params = {
|
||||
serviceId: selectorStore.currentService.id,
|
||||
processLabels: labels.value,
|
||||
|
@ -150,8 +150,7 @@ function changeEndpoint(opt: any[]) {
|
||||
|
||||
async function createTask() {
|
||||
emits("close");
|
||||
const date =
|
||||
monitorTime.value === "0" ? appStore.durationRow.start : time.value;
|
||||
const date = monitorTime.value === "0" ? new Date() : time.value;
|
||||
const params = {
|
||||
serviceId: selectorStore.currentService.id,
|
||||
endpointName: endpointName.value,
|
||||
|
Loading…
Reference in New Issue
Block a user