From c4b143b87929372198cf8f32f8f27e13d7cbaf6c Mon Sep 17 00:00:00 2001 From: deepanshkhurana Date: Tue, 11 Jun 2024 16:09:58 +0530 Subject: [PATCH] chore: fix strings on app chore: update README.md with FAQs --- README.md | 6 ++++++ app/main.R | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 44f7257..f84213f 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,12 @@ The LogAnalyzer open-source app is a simple, plug and play application developed - `[app/logic/api_utils.R` - `get_app_list()]` Posit Connect differentiates apps with two `app_role` values: `owner` and `viewer`. You can toggle between these using the `config.yml` file. The set value is `owner`. If you want to use both together, you can simply set the value to a blank character `""`. +# FAQs + +- I get `"Oops! Can't read apps from Posit Connect."` on the rightmost image? + - This may mean that the Posit Connect API's response did not send proper data. + - So far, one documented reason for this is that oAuth on Posit Connect instances may prevent the `/content` endpoint from sending app data. + # Credits It was our collaboration with Elkem which led to the creation of this app. The initial idea came from use-cases where we realised we wanted to track all the logs and be able to read them properly since Posit Connect was the de facto deployment environment. When we made this app, we realised there was potential in sharing this with the rest of the community and invite everyone to use it and add it. We appreciate and thank Elkem for their openness to share it with the world. diff --git a/app/main.R b/app/main.R index e54de83..0ada29e 100644 --- a/app/main.R +++ b/app/main.R @@ -125,7 +125,7 @@ server <- function(id) { ) } else { empty_state <- generate_empty_state_ui( - text = "Select an application and a job to view logs", + text = "Select an application and a job to view logs.", image_path = "static/illustrations/empty_state.svg" ) }