Hopefully fixed API pipeline, and type errors in app.
Build and Test App / Build-and-test-App (push) Successful in 32s
Details
Build and Test App / Build-and-test-App (pull_request) Successful in 32s
Details
Build and Test API / Build-and-test-API (pull_request) Successful in 49s
Details
Build and Test API / Build-and-test-API (push) Successful in 1m0s
Details
Build and Test App / Build-and-test-App (push) Successful in 32s
Details
Build and Test App / Build-and-test-App (pull_request) Successful in 32s
Details
Build and Test API / Build-and-test-API (pull_request) Successful in 49s
Details
Build and Test API / Build-and-test-API (push) Successful in 1m0s
Details
This commit is contained in:
parent
b66d0c4770
commit
77f60591ef
|
@ -12,7 +12,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Setup DLang
|
||||
uses: actions/setup-dlang@v2
|
||||
uses: dlang-community/setup-dlang@v2
|
||||
with:
|
||||
compiler: ldc-latest
|
||||
- name: Build
|
||||
|
|
|
@ -12,12 +12,12 @@ defineProps<{
|
|||
<span v-if="entry.absent">{{ EMOJI_ABSENT }}</span>
|
||||
<span v-if="!entry.absent">{{ EMOJI_PRESENT }}</span>
|
||||
|
||||
<span v-if="entry.phone && entry.phone.compliant">{{ EMOJI_PHONE_COMPLIANT }}</span>
|
||||
<span v-if="entry.phone && !entry.phone.compliant">{{ EMOJI_PHONE_NONCOMPLIANT }}</span>
|
||||
<span v-if="entry.phoneCompliant === true">{{ EMOJI_PHONE_COMPLIANT }}</span>
|
||||
<span v-if="entry.phoneCompliant === false">{{ EMOJI_PHONE_NONCOMPLIANT }}</span>
|
||||
|
||||
<span v-if="entry.behavior && entry.behavior.rating === 3">{{ EMOJI_BEHAVIOR_GOOD }}</span>
|
||||
<span v-if="entry.behavior && entry.behavior.rating === 2">{{ EMOJI_BEHAVIOR_MEDIOCRE }}</span>
|
||||
<span v-if="entry.behavior && entry.behavior.rating === 1">{{ EMOJI_BEHAVIOR_POOR }}</span>
|
||||
<span v-if="entry.behaviorRating === 3">{{ EMOJI_BEHAVIOR_GOOD }}</span>
|
||||
<span v-if="entry.behaviorRating === 2">{{ EMOJI_BEHAVIOR_MEDIOCRE }}</span>
|
||||
<span v-if="entry.behaviorRating === 1">{{ EMOJI_BEHAVIOR_POOR }}</span>
|
||||
</div>
|
||||
<p v-if="entry.comment.trim().length > 0" class="comment">
|
||||
{{ entry.comment }}
|
||||
|
|
Loading…
Reference in New Issue