Make invalid email more obvious, in profile view

This commit is contained in:
Lance Edgar 2023-01-02 11:11:01 -06:00
parent a061e362c3
commit d21826c70d

View file

@ -472,12 +472,12 @@
</b-table-column>
<b-table-column field="invalid"
label="Invalid"
label="Invalid?"
% if not buefy_0_8:
v-slot="props"
% endif
>
<span v-if="props.row.invalid" class="has-text-danger">Yes</span>
<span v-if="props.row.invalid" class="has-text-danger has-text-weight-bold">Invalid</span>
</b-table-column>
% if request.has_perm('people_profile.edit_person'):