From 81cda918c4a70e9237a84215e1f91e84d6d3abb3 Mon Sep 17 00:00:00 2001 From: tremor021 Date: Wed, 7 May 2025 18:24:09 +0200 Subject: [PATCH 1/2] Update FAQ --- frontend/src/config/faqConfig.tsx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/frontend/src/config/faqConfig.tsx b/frontend/src/config/faqConfig.tsx index edbd0beca02..5de66ab9ccf 100644 --- a/frontend/src/config/faqConfig.tsx +++ b/frontend/src/config/faqConfig.tsx @@ -34,4 +34,9 @@ export const FAQ_Items = [ content: "If an LXC script fails, run it again using Verbose mode. Standard mode hides detailed output for neatness, showing only progress. Verbose mode displays all messages, which helps you (and us) diagnose the error. Include this verbose output if you report the issue.", }, + { + title: "What does \"Updatable\" and \"Not updatable\" mean?", + content: + "Updatable means that script has a function that is used to update the installed application to the latest version availabale. Not updatable means that script doesn't have a function that can safely update the application to the latest version available, so only the LXC OS is updated.", + }, ]; From 7e221f978f9b6576e04ac9faae5711379b1d3f1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Slavi=C5=A1a=20Are=C5=BEina?= <58952836+tremor021@users.noreply.github.com> Date: Wed, 7 May 2025 19:15:45 +0200 Subject: [PATCH 2/2] Update frontend/src/config/faqConfig.tsx --- frontend/src/config/faqConfig.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/config/faqConfig.tsx b/frontend/src/config/faqConfig.tsx index 5de66ab9ccf..873435e8392 100644 --- a/frontend/src/config/faqConfig.tsx +++ b/frontend/src/config/faqConfig.tsx @@ -37,6 +37,6 @@ export const FAQ_Items = [ { title: "What does \"Updatable\" and \"Not updatable\" mean?", content: - "Updatable means that script has a function that is used to update the installed application to the latest version availabale. Not updatable means that script doesn't have a function that can safely update the application to the latest version available, so only the LXC OS is updated.", + "Updatable means that script has a function that is used to update the installed application to the latest version available. Not updatable means that script doesn't have a function that can safely update the application to the latest version available, so only the LXC OS is updated.", }, ];