From 1bc33546a044cbc84dd9595c19dbcd9a4e309fc9 Mon Sep 17 00:00:00 2001
From: vincentlu <t1341870251@gmail.com>
Date: 星期六, 10 一月 2026 14:06:10 +0800
Subject: [PATCH] #
---
zy-acs-flow/src/page/sta/StaPanel.jsx | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/zy-acs-flow/src/page/sta/StaPanel.jsx b/zy-acs-flow/src/page/sta/StaPanel.jsx
index 2534540..b247569 100644
--- a/zy-acs-flow/src/page/sta/StaPanel.jsx
+++ b/zy-acs-flow/src/page/sta/StaPanel.jsx
@@ -184,7 +184,7 @@
onChange={(event) => setTypeFilter(event.target.value)}
>
<MenuItem value="">
- {translate('common.action.reset')}
+ {translate('common.action.deselect')}
</MenuItem>
{RESERVE_TYPE_OPTIONS.map((option) => (
<MenuItem key={option} value={option}>
@@ -204,7 +204,7 @@
onChange={(event) => setStateFilter(event.target.value)}
>
<MenuItem value="">
- {translate('common.action.reset')}
+ {translate('common.action.deselect')}
</MenuItem>
{RESERVE_STATE_OPTIONS.map((option) => (
<MenuItem key={option} value={option}>
@@ -399,7 +399,7 @@
if (id === undefined || id === null || id === '') {
return '-';
}
- return map?.[id] || id;
+ return map?.[id] || '-';
};
const formatReserveType = (value, translate) =>
--
Gitblit v1.9.1