From 346e68fc59d9cee0baea9278a2944b978c050d2d Mon Sep 17 00:00:00 2001 From: Christoph Friedrich Date: Tue, 15 Apr 2025 16:11:16 +0200 Subject: [PATCH 1/3] Fix notices not showing if description not set --- components/Collection.vue | 4 ++-- components/FileFormat.vue | 4 ++-- components/Item.vue | 4 ++-- components/Job.vue | 4 ++-- components/Process.vue | 4 ++-- components/ServiceType.vue | 4 ++-- components/UdfRuntime.vue | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/components/Collection.vue b/components/Collection.vue index 57777e0..5728bf6 100644 --- a/components/Collection.vue +++ b/components/Collection.vue @@ -16,10 +16,10 @@ -
+

Description

- + diff --git a/components/FileFormat.vue b/components/FileFormat.vue index a2ad158..0532283 100644 --- a/components/FileFormat.vue +++ b/components/FileFormat.vue @@ -24,9 +24,9 @@ -
+

Description

- + diff --git a/components/Item.vue b/components/Item.vue index ccaa969..8e5fd61 100644 --- a/components/Item.vue +++ b/components/Item.vue @@ -8,8 +8,8 @@ - - + + diff --git a/components/Job.vue b/components/Job.vue index 1dc3cd0..145fd3f 100644 --- a/components/Job.vue +++ b/components/Job.vue @@ -47,9 +47,9 @@ - +

Description

- +
diff --git a/components/Process.vue b/components/Process.vue index 2493047..e8460de 100644 --- a/components/Process.vue +++ b/components/Process.vue @@ -33,10 +33,10 @@ -
+

Description

- + diff --git a/components/ServiceType.vue b/components/ServiceType.vue index 6b518ed..19d6080 100644 --- a/components/ServiceType.vue +++ b/components/ServiceType.vue @@ -14,9 +14,9 @@ -
+

Description

- + diff --git a/components/UdfRuntime.vue b/components/UdfRuntime.vue index 8bec82f..05d8d96 100644 --- a/components/UdfRuntime.vue +++ b/components/UdfRuntime.vue @@ -21,8 +21,8 @@ -
- +
+ From 50f2f3442748e2adeac0c41926af40f72b62d584 Mon Sep 17 00:00:00 2001 From: Christoph Friedrich Date: Thu, 17 Apr 2025 15:03:57 +0200 Subject: [PATCH 2/3] Fix typo --- components/ServiceType.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ServiceType.vue b/components/ServiceType.vue index 19d6080..c6dcbfd 100644 --- a/components/ServiceType.vue +++ b/components/ServiceType.vue @@ -14,7 +14,7 @@ -
+

Description

From 616ea055259bc793b1471de2401221f4c48b6d55 Mon Sep 17 00:00:00 2001 From: Christoph Friedrich Date: Wed, 23 Apr 2025 15:40:29 +0200 Subject: [PATCH 3/3] Add `compact` prop to FederationMissingNotice --- CHANGELOG.md | 4 ++++ README.md | 1 + components/FederationMissingNotice.vue | 29 ++++++++++++++++++++++++-- 3 files changed, 32 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb4b782..d1a0f85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Added + +- `FederationMissingNotice`: Prop `compact` + ## [2.18.3] - 2025-01-15 ### Fixed diff --git a/README.md b/README.md index 5fc6776..03cab58 100644 --- a/README.md +++ b/README.md @@ -252,6 +252,7 @@ Show a message that a response is incomplete due to missing data from an inacces - `missing` (array, required): The identifiers of the federated back-ends that are not providing data for the list of processes due to an issue. - `federation` (object): The data of the `federation` property obtained from the capabilities. - `retry` (function): Displays a "retry" button which executes the given function. +- `compact` (boolean): Renders the notice more compact if set to `true`. Defaults to `false`. **Slots:** diff --git a/components/FederationMissingNotice.vue b/components/FederationMissingNotice.vue index 848ace7..124c74b 100644 --- a/components/FederationMissingNotice.vue +++ b/components/FederationMissingNotice.vue @@ -1,5 +1,5 @@