We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aebcace commit 816488dCopy full SHA for 816488d
frontend/src/views/ds/TableList.vue
@@ -213,7 +213,14 @@ const editField = (row: any) => {
213
214
const changeStatus = (row: any) => {
215
currentField.value = row
216
- saveField()
+ datasourceApi.saveField(currentField.value).then(() => {
217
+ closeField()
218
+ ElMessage({
219
+ message: t('common.save_success'),
220
+ type: 'success',
221
+ showClose: true,
222
+ })
223
224
}
225
226
const closeField = () => {
0 commit comments