mirror of
https://github.com/MCSManager/MCSManager.git
synced 2024-11-21 03:12:10 +08:00
fix: spell check
This commit is contained in:
parent
781bd32c48
commit
019ccf04d1
@ -500,7 +500,7 @@ onMounted(async () => {
|
||||
:target-instance-info="item"
|
||||
:target-daemon-id="currentRemoteNode?.uuid"
|
||||
@click="handleSelectInstance(item)"
|
||||
@refrsh-list="initInstancesData()"
|
||||
@refresh-list="initInstancesData()"
|
||||
/>
|
||||
</a-col>
|
||||
</fade-up-animation>
|
||||
|
@ -14,8 +14,7 @@ import {
|
||||
CloudDownloadOutlined,
|
||||
CodeOutlined,
|
||||
UserOutlined,
|
||||
TagsOutlined,
|
||||
DeleteOutlined
|
||||
TagsOutlined
|
||||
} from "@ant-design/icons-vue";
|
||||
import {
|
||||
openInstance,
|
||||
@ -41,7 +40,7 @@ const props = defineProps<{
|
||||
targetDaemonId?: string;
|
||||
}>();
|
||||
|
||||
const emits = defineEmits(["refrshList"]);
|
||||
const emits = defineEmits(["refreshList"]);
|
||||
|
||||
const { containerState } = useLayoutContainerStore();
|
||||
const { getMetaOrRouteValue } = useLayoutCardTools(props.card);
|
||||
@ -71,7 +70,7 @@ const { isLoading: updateLoading, execute: executeUpdate } = updateInstance();
|
||||
|
||||
const refreshList = () => {
|
||||
setTimeout(() => {
|
||||
emits("refrshList");
|
||||
emits("refreshList");
|
||||
}, 500);
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user