From 12e6cb3c1ca580f6786f388c74d9518ead609613 Mon Sep 17 00:00:00 2001 From: Jason Henriquez Date: Wed, 22 May 2024 23:24:49 -0500 Subject: [PATCH] Update proxy port and playlist description maxlength --- src/renderer/components/playlist-info/playlist-info.vue | 1 + src/renderer/components/proxy-settings/proxy-settings.vue | 1 + 2 files changed, 2 insertions(+) diff --git a/src/renderer/components/playlist-info/playlist-info.vue b/src/renderer/components/playlist-info/playlist-info.vue index 384882041c9d8..2c77a8969e4b5 100644 --- a/src/renderer/components/playlist-info/playlist-info.vue +++ b/src/renderer/components/playlist-info/playlist-info.vue @@ -65,6 +65,7 @@ :placeholder="$t('User Playlists.Playlist Description')" :show-action-button="false" :show-label="false" + :maxlength="null" :value="newDescription" @input="(input) => newDescription = input" @keydown.enter.native="savePlaylistInfo" diff --git a/src/renderer/components/proxy-settings/proxy-settings.vue b/src/renderer/components/proxy-settings/proxy-settings.vue index 364becc18c7a1..3245e0f3c5f14 100644 --- a/src/renderer/components/proxy-settings/proxy-settings.vue +++ b/src/renderer/components/proxy-settings/proxy-settings.vue @@ -37,6 +37,7 @@ :show-action-button="false" :show-label="true" :value="proxyPort" + :maxlength="5" @input="handleUpdateProxyPort" @keydown.enter.native="testProxy" />