fix issuer name in project list

This commit is contained in:
2023-12-27 14:13:05 -07:00
parent f8d3fe2ee1
commit 051a0a97d8
4 changed files with 19 additions and 16 deletions

View File

@@ -125,8 +125,8 @@ export default class ProjectsView extends Vue {
if (resp.status === 200 || !resp.data.data) {
const plans: ProjectData[] = resp.data.data;
for (const plan of plans) {
const { name, description, handleId, rowid } = plan;
this.projects.push({ name, description, handleId, rowid });
const { name, description, handleId, issuerDid, rowid } = plan;
this.projects.push({ name, description, handleId, issuerDid, rowid });
}
} else {
console.log("Bad server response & data:", resp.status, resp.data);