Skip to content

Commit

Permalink
Update wording.
Browse files Browse the repository at this point in the history
  • Loading branch information
jkppr committed Jun 27, 2023
1 parent 70f8419 commit d61b436
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ limitations under the License.
>
<tr class="pr-3">
<td width="105" style="border: none">
<strong>Result:</strong>
<strong>Summary:</strong>
</td>
<td style="border: none">
<span>
Expand Down Expand Up @@ -176,7 +176,7 @@ limitations under the License.
</tr>
<tr v-if="Object.keys(getAnalyzerOutputMetaData).length !== 0">
<td colspan="2" style="border: none">
<strong>Connected Events</strong>
<strong>Result artifacts</strong>
</td>
</tr>
<tr v-for="(item, key) in getAnalyzerOutputMetaData" :key="key">
Expand All @@ -188,7 +188,7 @@ limitations under the License.
{{ view.name }}
</v-chip>
</td>
<td style="border: none" v-if="key === 'Stories'">
<td style="border: none" v-if="key === 'Story'">
<router-link
v-for="story in item"
:key="story.id"
Expand Down Expand Up @@ -248,7 +248,7 @@ limitations under the License.
<tr class="pr-3">
<td width="80" style="border: none">
<strong v-if="timeline.analysis_status === 'ERROR'">Error:</strong>
<strong v-else>Result:</strong>
<strong v-else>Summary:</strong>
</td>
<td style="border: none">
<span>
Expand Down Expand Up @@ -333,11 +333,11 @@ export default {
}
}
if (this.verboseAnalyzerOutput.platform_meta_data.saved_stories !== undefined) {
metaData['Stories'] = []
metaData['Story'] = []
for (const id of this.verboseAnalyzerOutput.platform_meta_data.saved_stories) {
let storie = this.meta.stories.find((storie) => storie.id === id)
if (storie !== undefined) {
metaData['Stories'].push(storie)
metaData['Story'].push(storie)
}
}
}
Expand Down

0 comments on commit d61b436

Please sign in to comment.