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 3e549a6 commit 119b499Copy full SHA for 119b499
src/views/system/oauth2/client/ClientForm.vue
@@ -48,7 +48,7 @@
48
style="width: 500px"
49
>
50
<el-option
51
- v-for="dict in getIntDictOptions(DICT_TYPE.SYSTEM_OAUTH2_GRANT_TYPE)"
+ v-for="dict in getDictOptions(DICT_TYPE.SYSTEM_OAUTH2_GRANT_TYPE)"
52
:key="dict.value"
53
:label="dict.label"
54
:value="dict.value"
@@ -144,7 +144,7 @@
144
</Dialog>
145
</template>
146
<script lang="ts" name="SystemOAuth2ClientForm" setup>
147
-import { DICT_TYPE, getIntDictOptions } from '@/utils/dict'
+import { DICT_TYPE, getDictOptions, getIntDictOptions } from '@/utils/dict'
148
import { CommonStatusEnum } from '@/utils/constants'
149
import * as ClientApi from '@/api/system/oauth2/client'
150
0 commit comments