Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zjy365 committed Jan 23, 2025
1 parent 4b4f073 commit ee3b77f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"ConfigMap Path Conflict": "配置文件路径冲突",
"ConfigMap Tip": "配置文件",
"Configurable number of instances or automatic horizontal scaling": "可配置实例数或自动横向伸缩",
"Configuration File": "Configmap 配置文件",
"Configuration File": "配置文件",
"Confirm": "确认",
"Confirm deletion": "确认删除",
"Confirm Deploy Application?": "确认部署应用?",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,6 @@ const DatePicker = ({ isDisabled = false, ...props }: DatePickerProps) => {
recentDateList[0]
);
}, [startDateTime, endDateTime, recentDateList]);
console.log(defaultRecentDate, 'defaultRecentDate');

const [inputState, setInputState] = useState<0 | 1>(0);
const [recentDate, setRecentDate] = useState<RecentDate>(defaultRecentDate);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1108,7 +1108,7 @@ const Form = ({
onClick={() => setConfigEdit(item)}
bg={'grayModern.25'}
>
<MyIcon name={'configMap'} />
<MyIcon name={'configMap'} w={'20px'} />
<Box ml={4} flex={'1 0 0'} w={0}>
<Box color={'myGray.900'} fontWeight={'bold'}>
{item.mountPath}
Expand Down Expand Up @@ -1180,7 +1180,7 @@ const Form = ({
bg={'grayModern.25'}
onClick={() => setStoreEdit(item)}
>
<MyIcon name={'store'} />
<MyIcon name={'store'} w={'20px'} />
<Box ml={4} flex={'1 0 0'} w={0}>
<Box color={'myGray.900'} fontWeight={'bold'}>
{item.path}
Expand Down Expand Up @@ -1232,7 +1232,7 @@ const Form = ({
cursor={'not-allowed'}
bg={'grayModern.25'}
>
<MyIcon name={'store'} />
<MyIcon name={'store'} w={'20px'} />
<Box ml={4} flex={'1 0 0'} w={0}>
<Box color={'myGray.900'} fontWeight={'bold'}>
{item.path}
Expand Down

0 comments on commit ee3b77f

Please sign in to comment.