fix field schema unique option (#9632)

This commit is contained in:
Azri Kahar
2021-11-09 20:01:39 +08:00
committed by GitHub
parent 67b51b7d44
commit 8ab0656321

View File

@@ -253,7 +253,7 @@ export default defineComponent({
const maxLength = syncFieldDetailStoreProperty('field.schema.max_length');
const numericPrecision = syncFieldDetailStoreProperty('field.schema.numeric_precision');
const nullable = syncFieldDetailStoreProperty('field.schema.is_nullable');
const unique = syncFieldDetailStoreProperty('field.schema.unique');
const unique = syncFieldDetailStoreProperty('field.schema.is_unique');
const numericScale = syncFieldDetailStoreProperty('field.schema.numeric_scale');
const { t } = useI18n();