From 0e4897f1841e1a61de00662a82e79d90b5da2453 Mon Sep 17 00:00:00 2001 From: thsrite Date: Sun, 17 Nov 2024 15:42:30 +0800 Subject: [PATCH] fix form --- plugins.v2/cloudstrmcompanion/__init__.py | 36 +++++++++++------------ 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/plugins.v2/cloudstrmcompanion/__init__.py b/plugins.v2/cloudstrmcompanion/__init__.py index ae514de..9c6361c 100644 --- a/plugins.v2/cloudstrmcompanion/__init__.py +++ b/plugins.v2/cloudstrmcompanion/__init__.py @@ -1256,24 +1256,6 @@ class CloudStrmCompanion(_PluginBase): { 'component': 'VRow', 'content': [ - { - 'component': 'VCol', - 'props': { - 'cols': 12, - 'md': 8 - }, - 'content': [ - { - 'component': 'VTextarea', - 'props': { - 'model': 'emby_path', - 'rows': '1', - 'label': '媒体库路径映射', - 'placeholder': 'MoviePilot本地文件路径:Emby文件路径(多组路径英文逗号拼接)' - } - } - ] - }, { 'component': 'VCol', 'props': { @@ -1295,6 +1277,24 @@ class CloudStrmCompanion(_PluginBase): } } ] + }, + { + 'component': 'VCol', + 'props': { + 'cols': 12, + 'md': 8 + }, + 'content': [ + { + 'component': 'VTextarea', + 'props': { + 'model': 'emby_path', + 'rows': '1', + 'label': '媒体库路径映射', + 'placeholder': 'MoviePilot本地文件路径:Emby文件路径(多组路径英文逗号拼接)' + } + } + ] } ] },