Skip to content

Commit

Permalink
fix: 修改构建错误
Browse files Browse the repository at this point in the history
  • Loading branch information
terwer committed Aug 1, 2023
1 parent b47140c commit 0681ebd
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/components/publish/form/PublishPlatform.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,10 @@ import { createAppLogger } from "~/src/utils/appLogger.ts"
const logger = createAppLogger("publish-platform")
const props = defineProps({
id: "" as string,
id: {
type: String,
default: "",
},
})
// uses
Expand Down
2 changes: 1 addition & 1 deletion src/components/set/publish/PlatformQuickAdd.vue
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ initPage()
</el-space>
</div>
<div class="add-action">
<el-button type="primary" size="large" @click="handleAddPlatform">
<el-button type="primary" size="large" @click="handleAddPlatform(undefined)">
添加自定义 {{ formData.ptype.title }} 对接
</el-button>
</div>
Expand Down

0 comments on commit 0681ebd

Please sign in to comment.