mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-06-29 18:07:35 +00:00
update
This commit is contained in:
parent
0a12c31e72
commit
73e25dcea6
@ -61,7 +61,7 @@ limitations under the License. -->
|
||||
</nav>
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
import { ref, computed } from "vue";
|
||||
import { ref, computed, watch } from "vue";
|
||||
import { useI18n } from "vue-i18n";
|
||||
import { ElMessage } from "element-plus";
|
||||
import ConditionTags from "@/views/components/ConditionTags.vue";
|
||||
@ -125,6 +125,16 @@ limitations under the License. -->
|
||||
pageNum.value = p;
|
||||
refreshAlarms({ pageNum: p });
|
||||
}
|
||||
|
||||
watch(
|
||||
() => appStore.coldStageMode,
|
||||
() => {
|
||||
durationRow.value = InitializationDurationRow;
|
||||
setDurationRow(durationRow.value);
|
||||
duration.value = getDurationTime();
|
||||
refreshAlarms({ pageNum: 1 });
|
||||
},
|
||||
);
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.alarm-tool {
|
||||
|
Loading…
Reference in New Issue
Block a user