diff --git a/src/components/service/FormCredentialService.tsx b/src/components/service/FormCredentialService.tsx
index 96c09e7..e9c0374 100644
--- a/src/components/service/FormCredentialService.tsx
+++ b/src/components/service/FormCredentialService.tsx
@@ -24,22 +24,28 @@ const FormCredentialService = ({ credential }: FormCredentialServiceProps) => {
return (
{credential.username && (
-
-
-
+ <>
+ Nama Pengguna
+
+
+
+ >
)}
{credential.password && (
-
-
-
+ <>
+ Kata Sandi
+
+
+
+ >
)}
{credential.hasSso ? (
diff --git a/src/components/team/TeamItem.tsx b/src/components/team/TeamItem.tsx
index 3dd317b..f71f201 100644
--- a/src/components/team/TeamItem.tsx
+++ b/src/components/team/TeamItem.tsx
@@ -85,7 +85,7 @@ const TeamItem = ({ team, onItemUpdated, onItemDeleted }: TeamItemProps) => {
items: [
{
key: "add",
- label: "Tambah",
+ label: "Ubah",
onClick: () => {
const memberIds = team.users.map((item) => item.user.id);
@@ -105,8 +105,8 @@ const TeamItem = ({ team, onItemUpdated, onItemDeleted }: TeamItemProps) => {
maskClosable: true,
closable: true,
okCancel: true,
- title: `Hapus Layanan: ${team.name}`,
- content: "Apakah Anda yakin ingin menghapus layanan ini?",
+ title: `Hapus Tim: ${team.name}`,
+ content: "Apakah Anda yakin ingin menghapus tim ini?",
cancelText: "Batal",
okText: "Hapus",
onOk: () => handleDeleteService(team.id),
@@ -144,7 +144,7 @@ const TeamItem = ({ team, onItemUpdated, onItemDeleted }: TeamItemProps) => {
(
{!isMobile ? user?.name : null}
-
+
+ {user?.name ? getInitials(user.name) : "😸"}
+