Skip to content

Commit

Permalink
fix: 🚀 修复设备列表按钮状态变更影响布局变化的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
viarotel committed Oct 16, 2023
1 parent 1c0fcc3 commit 83a8043
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/release-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@ jobs:
- name: release
uses: softprops/action-gh-release@v1
with:
draft: true
prerelease: true
files: |
dist-release/*.exe
dist-release/*.zip
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
steps:
- uses: google-github-actions/release-please-action@v3
with:
release-type: node
package-name: release-please-action
token: ${{ secrets.GH_TOKEN }}
release-type: node
package-name: escrcpy
prerelease: true
6 changes: 3 additions & 3 deletions src/components/Devices/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
:icon="row.$loading ? '' : 'Monitor'"
@click="handleMirror(row)"
>
{{ row.$loading ? '镜像中' : '开始镜像' }}
{{ row.$loading ? '正在镜像' : '开始镜像' }}
</el-button>

<el-button
Expand All @@ -96,7 +96,7 @@
:icon="row.$recordLoading ? '' : 'VideoCamera'"
@click="handleRecord(row)"
>
{{ row.$recordLoading ? '录制中' : '开始录制' }}
{{ row.$recordLoading ? '正在录制' : '开始录制' }}
</el-button>

<el-button
Expand All @@ -119,7 +119,7 @@
:icon="row.$stopLoading ? '' : 'CircleClose'"
@click="handleStop(row)"
>
{{ row.$stopLoading ? '断开中' : '断开连接' }}
{{ row.$stopLoading ? '正在断开' : '断开连接' }}
</el-button>
</template>
</el-table-column>
Expand Down

0 comments on commit 83a8043

Please sign in to comment.