Skip to content

Commit

Permalink
fix: 修复同步配置选择来源样式
Browse files Browse the repository at this point in the history
  • Loading branch information
xream committed Jan 20, 2024
1 parent 8e0c949 commit e718112
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sub-store-front-end",
"version": "2.14.88",
"version": "2.14.92",
"private": true,
"scripts": {
"dev": "vite --host",
Expand Down
21 changes: 11 additions & 10 deletions src/components/ArtifactPanel.vue
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<template>
<!-- lock-scroll -->
<nut-dialog
teleport="#app"
pop-class="artifact-panel auto-dialog"
Expand All @@ -9,7 +10,6 @@
@cancel="closePanel"
closeOnPopstate
visible
lock-scroll
>
<nut-form :model-value="editPanelData" ref="ruleForm">
<nut-form-item
Expand Down Expand Up @@ -89,15 +89,16 @@
type="text"
/>
<!-- readonly 只读 -->

<nut-cascader
:title="$t('syncPage.selectSource.title')"
v-model:visible="sourceSelectorIsVisible"
v-model="sourceModel"
@change="sourceChange"
:options="sourceOptions"
></nut-cascader>


<Teleport to="body">
<nut-cascader
:title="$t('syncPage.selectSource.title')"
v-model:visible="sourceSelectorIsVisible"
v-model="sourceModel"
@change="sourceChange"
:options="sourceOptions"
></nut-cascader>
</Teleport>
</nut-form-item>
<template v-if="sourceInput && ['subscription', 'collection'].includes(editPanelData.type)">
<div class="include-unsupported-proxy-wrapper">
Expand Down

0 comments on commit e718112

Please sign in to comment.