Skip to content

Commit

Permalink
CLDR-17560 Overall Locales: suppress how to fix, for now
Browse files Browse the repository at this point in the history
  • Loading branch information
srl295 committed May 24, 2024
1 parent f082976 commit ab125cd
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions tools/cldr-apps/js/src/views/CldrError.vue
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
<template>
<div style="background: #ffffff; padding: 30px">
<a-card hoverable :title="subtypeString">
<!-- TODO: Error details are commented out temporarily, see discussion at CLDR-17664 -->
<template #extra
><a-tag :title="status.subtype" :color="status.type.toLowerCase()">{{
status.type
}}</a-tag></template
>
<p>
{{ status.message }}
</p>
<template v-if="status.subtypeUrl" #actions
><a class="warningReference" :href="status.subtypeUrl"
>How to Fix…</a
><a-tag
:title="status.subtype"
:color="'error' || status.type.toLowerCase()"
>{{ "error" || status.type }}</a-tag
></template
>
<!-- <p>
{{ status.message }}
</p> -->
<p>Information on how to fix this is forthcoming.</p>
<!--
<template v-if="status.subtypeUrl" #actions>
<a class="warningReference" :href="status.subtypeUrl">How to Fix…</a>
</template>
-->
</a-card>
</div>
</template>
Expand Down

0 comments on commit ab125cd

Please sign in to comment.