Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
JosephVolosin committed Dec 4, 2024
1 parent 8afe276 commit 7835a15
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/components/external-source/ExternalTypeManager.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,9 @@
if (eventType === undefined) {
return [];
}
const associatedSources = $sourcesUsingExternalEventTypes.filter(entry => entry.types.includes(eventType)).map(entry => entry.key); // NOTE: MAY NEED TO REMOVE THIS - COULD BE A VERY SLOW OPERATION.
const associatedSources = $sourcesUsingExternalEventTypes
.filter(entry => entry.types.includes(eventType))
.map(entry => entry.key); // NOTE: MAY NEED TO REMOVE THIS - COULD BE A VERY SLOW OPERATION.
return associatedSources;
}
Expand Down Expand Up @@ -785,9 +787,9 @@
<div class="attribute-name">{attribute[0]}</div>
{#if Array.isArray(attribute[1])}
<ul class="attribute-array">
{#each attribute[1] as attributeValue}
<li class="attribute-value">{attributeValue}</li>
{/each}
{#each attribute[1] as attributeValue}
<li class="attribute-value">{attributeValue}</li>
{/each}
</ul>
{:else}
<div class="attribute-value">{attribute[1]}</div>
Expand Down

0 comments on commit 7835a15

Please sign in to comment.