upd: nama user
Deskripsi: - fix nama user dari start case = ga keliatan tanda baca menjadi upper first No Issues
This commit is contained in:
@@ -139,7 +139,7 @@ export default function ViewSearch() {
|
|||||||
c={tema.get().utama}
|
c={tema.get().utama}
|
||||||
truncate="end"
|
truncate="end"
|
||||||
>
|
>
|
||||||
{_.startCase(v.name)}
|
{_.upperFirst(v.name)}
|
||||||
</Text>
|
</Text>
|
||||||
<Text fw={"lighter"} fz={12} truncate="end">
|
<Text fw={"lighter"} fz={12} truncate="end">
|
||||||
{v.group + " - " + v.position}
|
{v.group + " - " + v.position}
|
||||||
|
|||||||
@@ -174,7 +174,7 @@ export default function TabListMember() {
|
|||||||
xl: 11,
|
xl: 11,
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Text fw={'bold'} pl={isMobile2 ? 40 : 30} c={tema.get().utama} lineClamp={1}>{_.startCase(v.name)}</Text>
|
<Text fw={'bold'} pl={isMobile2 ? 40 : 30} c={tema.get().utama} lineClamp={1}>{_.upperFirst(v.name)}</Text>
|
||||||
<Text fw={'lighter'} pl={isMobile2 ? 40 : 30} fz={12}>{v.group + ' - ' + v.position}</Text>
|
<Text fw={'lighter'} pl={isMobile2 ? 40 : 30} fz={12}>{v.group + ' - ' + v.position}</Text>
|
||||||
</Grid.Col>
|
</Grid.Col>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|||||||
Reference in New Issue
Block a user