From 777d6696aa63c00e600c053466baf9c20dfe2f2f Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Tue, 15 Oct 2019 12:11:53 +0200 Subject: [PATCH 1/3] Added feedback via loading spinner when searching a remote library --- changes/changelog.d/search-remote.enhancement | 1 + front/src/views/content/remote/Card.vue | 2 +- front/src/views/content/remote/ScanForm.vue | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 changes/changelog.d/search-remote.enhancement 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/views/content/remote/Card.vue b/front/src/views/content/remote/Card.vue index 0fbb94c0c..d87b7f3b4 100644 --- a/front/src/views/content/remote/Card.vue +++ b/front/src/views/content/remote/Card.vue @@ -142,7 +142,7 @@ export default { library: {type: Object, required: true}, displayFollow: {type: Boolean, default: true}, displayScan: {type: Boolean, default: true}, - displayCopyFid: {type: Boolean, default: false}, + displayCopyFid: {type: Boolean, default: true}, }, data () { return { diff --git a/front/src/views/content/remote/ScanForm.vue b/front/src/views/content/remote/ScanForm.vue index 5c68bf130..9a3ee9ae8 100644 --- a/front/src/views/content/remote/ScanForm.vue +++ b/front/src/views/content/remote/ScanForm.vue @@ -10,7 +10,7 @@
-
From b53bf45cc5647c90f8fda5b89e0d5115a32a5728 Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Wed, 16 Oct 2019 10:34:52 +0200 Subject: [PATCH 2/3] Fix #945: Fixed escaped pod name displayed on home/about page --- changes/changelog.d/945.bugfix | 1 + front/src/components/About.vue | 8 +++++--- front/src/components/Home.vue | 6 ++++-- 3 files changed, 10 insertions(+), 5 deletions(-) create mode 100644 changes/changelog.d/945.bugfix 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/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 }}
From caba333287c1b743bf553b3a83806fc136f4fc4b Mon Sep 17 00:00:00 2001 From: Eliot Berriot Date: Wed, 16 Oct 2019 11:48:37 +0200 Subject: [PATCH 3/3] Fix #933: Ensure password input doesn't overflow outside of container --- changes/changelog.d/933.bugfix | 1 + front/src/components/forms/PasswordInput.vue | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changes/changelog.d/933.bugfix 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/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 @@