diff --git a/changes/changelog.d/933.bugfix b/changes/changelog.d/933.bugfix new file mode 100644 index 000000000..ff8712be2 --- /dev/null +++ b/changes/changelog.d/933.bugfix @@ -0,0 +1 @@ +Ensure password input doesn't overflow outside of container (#933) diff --git a/changes/changelog.d/945.bugfix b/changes/changelog.d/945.bugfix new file mode 100644 index 000000000..ef46473d1 --- /dev/null +++ b/changes/changelog.d/945.bugfix @@ -0,0 +1 @@ +Fixed escaped pod name displayed on home/about page (#945) diff --git a/changes/changelog.d/search-remote.enhancement b/changes/changelog.d/search-remote.enhancement new file mode 100644 index 000000000..0ddde5f3c --- /dev/null +++ b/changes/changelog.d/search-remote.enhancement @@ -0,0 +1 @@ +Added feedback via loading spinner when searching a remote library diff --git a/front/src/components/About.vue b/front/src/components/About.vue index 3c84b48f9..ae8fd24dc 100644 --- a/front/src/components/About.vue +++ b/front/src/components/About.vue @@ -3,10 +3,12 @@

- - About %{ podName } - + About %{ podName }! +
{{ shortDescription }}
diff --git a/front/src/components/Home.vue b/front/src/components/Home.vue index 34bc19a32..dfa040ea8 100644 --- a/front/src/components/Home.vue +++ b/front/src/components/Home.vue @@ -3,10 +3,12 @@

- Welcome to %{ podName }! - +
{{ shortDescription }}
diff --git a/front/src/components/forms/PasswordInput.vue b/front/src/components/forms/PasswordInput.vue index 702be4f66..fe1a01a9f 100644 --- a/front/src/components/forms/PasswordInput.vue +++ b/front/src/components/forms/PasswordInput.vue @@ -1,5 +1,5 @@