While adding the data to SharePoint List only alert is displaying as Added.But the data is not added to the SharePoint list.
There are no relevant console errors also.
Can anyone please suggest if any known isssue.
AddSPItem()
{
pnp.sp.web.lists.getByTitle('profileList').items.add({
ProfileName : document.getElementById('ProfileName')["value"],
ProfileJob : document.getElementById('ProfileJob')["value"]
});
alert("Record with Profile Name : "+ document.getElementById('ProfileName')["value"] + " Added !");
}