@asd20/ui 3.2.894 → 3.2.895

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "*.scss",
6
6
  "*.vue"
7
7
  ],
8
- "version": "3.2.894",
8
+ "version": "3.2.895",
9
9
  "private": false,
10
10
  "license": "MIT",
11
11
  "repository": {
@@ -75,7 +75,7 @@
75
75
  </div>
76
76
  <div
77
77
  class="asd20-card__indicators"
78
- v-if="hasFile || hasGallery || hasVideo"
78
+ v-if="hasFile || hasGallery || hasVideo || sourceOrg"
79
79
  >
80
80
  <asd20-icon v-if="hasVideo" name="video" size="sm" />
81
81
  <asd20-icon v-if="hasGallery" name="gallery" size="sm" />
@@ -33,7 +33,11 @@ export default function mapMessageToCard(
33
33
  let sourceOrg = null
34
34
  let websiteLogo = null
35
35
 
36
- if (message.ownerOrganizationId !== organization.id) {
36
+ if (
37
+ message.ownerOrganizationId !== organization.id &&
38
+ message.destinations &&
39
+ message.destinations.length === 0
40
+ ) {
37
41
  const matchedOrg = organizationOptions.find(
38
42
  org => org.id === message.ownerOrganizationId
39
43
  )