mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-07-18 21:25:24 +00:00
fix
This commit is contained in:
parent
3696027d26
commit
575ef3359a
@ -150,6 +150,7 @@ const msg = {
|
|||||||
duplicateName: "Duplicate name",
|
duplicateName: "Duplicate name",
|
||||||
enableAssociate: "Enable association",
|
enableAssociate: "Enable association",
|
||||||
text: "Text",
|
text: "Text",
|
||||||
|
query: "Query",
|
||||||
seconds: "Seconds",
|
seconds: "Seconds",
|
||||||
hourTip: "Select Hour",
|
hourTip: "Select Hour",
|
||||||
minuteTip: "Select Minute",
|
minuteTip: "Select Minute",
|
||||||
|
@ -150,6 +150,7 @@ const msg = {
|
|||||||
nameTip:
|
nameTip:
|
||||||
"El nombre sólo admite chino e inglés, líneas horizontales y subrayado, y la longitud del nombre no excederá de 300 caracteres",
|
"El nombre sólo admite chino e inglés, líneas horizontales y subrayado, y la longitud del nombre no excederá de 300 caracteres",
|
||||||
enableAssociate: "Activar asociación",
|
enableAssociate: "Activar asociación",
|
||||||
|
query: "Consulta",
|
||||||
seconds: "Segundos",
|
seconds: "Segundos",
|
||||||
hourTip: "Seleccione Hora",
|
hourTip: "Seleccione Hora",
|
||||||
minuteTip: "Seleccione Minuto",
|
minuteTip: "Seleccione Minuto",
|
||||||
|
@ -147,6 +147,7 @@ const msg = {
|
|||||||
nameTip: "该名称仅支持中文和英文、横线和下划线, 并且限制长度为300个字符",
|
nameTip: "该名称仅支持中文和英文、横线和下划线, 并且限制长度为300个字符",
|
||||||
duplicateName: "重复的名称",
|
duplicateName: "重复的名称",
|
||||||
text: "文本",
|
text: "文本",
|
||||||
|
query: "查询",
|
||||||
seconds: "秒",
|
seconds: "秒",
|
||||||
hourTip: "选择小时",
|
hourTip: "选择小时",
|
||||||
minuteTip: "选择分钟",
|
minuteTip: "选择分钟",
|
||||||
|
@ -39,9 +39,14 @@ limitations under the License. -->
|
|||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<div ref="timeRange" class="time-ranges"></div>
|
<div ref="timeRange" class="time-ranges"></div>
|
||||||
<el-button class="query" size="small" type="primary" @click="updateTopology"
|
<el-button
|
||||||
>query</el-button
|
class="query"
|
||||||
|
size="small"
|
||||||
|
type="primary"
|
||||||
|
@click="updateTopology"
|
||||||
>
|
>
|
||||||
|
{{ t("query") }}
|
||||||
|
</el-button>
|
||||||
</el-popover>
|
</el-popover>
|
||||||
</template>
|
</template>
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
|
@ -179,7 +179,7 @@ function enableInterval() {
|
|||||||
if (enableTasks.value) {
|
if (enableTasks.value) {
|
||||||
intervalFn.value = setInterval(() => {
|
intervalFn.value = setInterval(() => {
|
||||||
fetchTasks();
|
fetchTasks();
|
||||||
}, 18000);
|
}, 180000);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
intervalFn.value && clearInterval(intervalFn.value);
|
intervalFn.value && clearInterval(intervalFn.value);
|
||||||
|
Loading…
Reference in New Issue
Block a user