File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed
frontend/app/pages/docs/server Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 99 {{ $t("i18n._global.available_data") }}
1010 </h1 >
1111 <p >{{ $t("i18n.pages.docs.server.available_data.table_description") }}</p >
12- <div class =" my-6 flex justify-center " >
12+ <div class =" my-6 flex" >
1313 <div class =" w-full max-w-4xl overflow-x-auto" >
1414 <table class =" min-w-full divide-y divide-distinct-text" >
1515 <thead class =" bg-highlight" >
3737 {{ item.language_name }}
3838 </td >
3939 <td class =" whitespace-nowrap px-6 py-4 text-primary-text" >
40- {{ item.nouns }}
40+ {{ item.nouns.toLocaleString() }}
4141 </td >
4242 <td class =" whitespace-nowrap px-6 py-4 text-primary-text" >
43- {{ item.verbs }}
43+ {{ item.verbs.toLocaleString() }}
4444 </td >
4545 </tr >
4646 </tbody >
5353<script setup lang="ts">
5454import { onMounted , ref } from " vue" ;
5555
56- type LanguageDataStat = Record <string , unknown >;
56+ interface LanguageDataStat {
57+ language_name: string ;
58+ nouns: number ;
59+ verbs: number ;
60+ }
5761
5862const languageData = ref <LanguageDataStat []>([]);
5963const error = ref <string | null >(null );
You can’t perform that action at this time.
0 commit comments