fix: update the title of instance list and notices in the continue profiling (#289)

This commit is contained in:
Fine0830 2023-06-25 22:41:45 +08:00 committed by GitHub
parent cc367dd29c
commit 63db3fbc2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -399,7 +399,7 @@ const msg = {
uriRegex: "URI Regex",
uriList: "URI List",
processes: "Processes",
monitorInstances: "Monitor Instances",
monitorInstances: "Monitoring Instances",
processDashboards: "Process Dashboards",
instanceDashboards: "Instance Dashboards",
detailLabel: "Detail Label",

View File

@ -56,7 +56,7 @@ limitations under the License. -->
<div>
<div class="label">
<span class="mr-5">{{ t("threshold") }}</span>
<span>({{ getNotice(item.type) }} )</span>
<span>{{ getNotice(item.type) }}</span>
</div>
<el-input
type="number"
@ -202,7 +202,7 @@ limitations under the License. -->
HTTP_AVG_RESPONSE_TIME: "It is a response time in milliseconds",
};
return map[type];
return map[type] ? `(${map[type]})` : "";
}
</script>
<style lang="scss" scoped>