fix: 🚀 修复设备列表按钮状态变更影响布局变化的问题

This commit is contained in:
viarotel 2023-10-16 16:54:01 +08:00
parent 1c0fcc34ce
commit 83a8043b25
3 changed files with 6 additions and 7 deletions

View File

@ -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

View File

@ -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

View File

@ -85,7 +85,7 @@
:icon="row.$loading ? '' : 'Monitor'"
@click="handleMirror(row)"
>
{{ row.$loading ? '镜像' : '开始镜像' }}
{{ row.$loading ? '正在镜像' : '开始镜像' }}
</el-button>
<el-button
@ -96,7 +96,7 @@
:icon="row.$recordLoading ? '' : 'VideoCamera'"
@click="handleRecord(row)"
>
{{ row.$recordLoading ? '录制' : '开始录制' }}
{{ row.$recordLoading ? '正在录制' : '开始录制' }}
</el-button>
<el-button
@ -119,7 +119,7 @@
:icon="row.$stopLoading ? '' : 'CircleClose'"
@click="handleStop(row)"
>
{{ row.$stopLoading ? '断开' : '断开连接' }}
{{ row.$stopLoading ? '正在断开' : '断开连接' }}
</el-button>
</template>
</el-table-column>