Sign in
简柏林
/
thingskit-front
·
Commits
GitLab
Go to dashboard
Project
Activity
Files
Commits
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Labels
Wiki
Network
Download as
Email Patches
Plain Diff
Browse Files
Commit
aa513de1a486c3c193c5427fdb46b7f85cc1b231
Authored by
ww
2022-09-13 14:43:05 +0800
1 parent
249ce625
fix: DEFECT-684 not select virtual component can not action
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
src/views/data/board/detail/components/DataBindModal.vue
src/views/data/board/detail/components/DataBindModal.vue
View file @
aa513de
...
...
@@ -53,6 +53,10 @@
53
53
54
54
const handleAddComponent = async (value: Recordable) => {
55
55
try {
56
+
if (!unref(frontId)) {
57
+
createMessage.warning('请选择可视化组件');
58
+
return;
59
+
}
56
60
changeOkLoading(true);
57
61
await addDataComponent({
58
62
boardId: unref(boardId),
...
...