Skip to content

Commit

Permalink
fix(components): [progress] fix type error (element-plus#9894)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryuhangyeong authored Sep 25, 2022
1 parent 0088da1 commit f9edc9d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/components/progress/src/progress.vue
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@
</template>

<script lang="ts" setup>
// @ts-nocheck
import { computed } from 'vue'
import { ElIcon } from '@element-plus/components/icon'
import {
Expand All @@ -97,7 +96,7 @@ defineOptions({
name: 'ElProgress',
})
const STATUS_COLOR_MAP = {
const STATUS_COLOR_MAP: Record<string, string> = {
success: '#13ce66',
exception: '#ff4949',
warning: '#e6a23c',
Expand Down

0 comments on commit f9edc9d

Please sign in to comment.