From 4db34e0c56696dff2f2aa35c9cfa208df0ad32cf Mon Sep 17 00:00:00 2001 From: jmt-gh <13617455+jmt-gh@users.noreply.github.com> Date: Fri, 25 Nov 2022 21:06:18 -0800 Subject: [PATCH 01/11] Add new settings content component This commit adds a new settings conent component. This is a container component for the settings pages, so that they all get the same formatting by default. It handles the header text, description text, and any "add new" plus button as needed. --- client/components/app/SettingsContent.vue | 48 +++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 client/components/app/SettingsContent.vue diff --git a/client/components/app/SettingsContent.vue b/client/components/app/SettingsContent.vue new file mode 100644 index 00000000..df079711 --- /dev/null +++ b/client/components/app/SettingsContent.vue @@ -0,0 +1,48 @@ + + + + + \ No newline at end of file From 762748225d726ba7f123f7384424bc7ad89274c7 Mon Sep 17 00:00:00 2001 From: jmt-gh <13617455+jmt-gh@users.noreply.github.com> Date: Fri, 25 Nov 2022 21:07:41 -0800 Subject: [PATCH 02/11] convert settings page to use settings content component --- client/pages/config/index.vue | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/client/pages/config/index.vue b/client/pages/config/index.vue index 5e25c8a6..ca65963b 100644 --- a/client/pages/config/index.vue +++ b/client/pages/config/index.vue @@ -1,10 +1,6 @@