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", uriRegex: "URI Regex",
uriList: "URI List", uriList: "URI List",
processes: "Processes", processes: "Processes",
monitorInstances: "Monitor Instances", monitorInstances: "Monitoring Instances",
processDashboards: "Process Dashboards", processDashboards: "Process Dashboards",
instanceDashboards: "Instance Dashboards", instanceDashboards: "Instance Dashboards",
detailLabel: "Detail Label", detailLabel: "Detail Label",

View File

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