Convert missed ds-avatar, fix cypress test

This commit is contained in:
mattwr18 2020-01-16 19:18:50 +01:00
parent e31b9ff015
commit 74a7db5388
2 changed files with 2 additions and 2 deletions

View File

@ -32,5 +32,5 @@ Then("I cannot upload a picture", () => {
cy.get(".ds-card-content") cy.get(".ds-card-content")
.children() .children()
.should("not.have.id", "customdropzone") .should("not.have.id", "customdropzone")
.should("have.class", "ds-avatar"); .should("have.class", "user-avatar");
}); });

View File

@ -157,7 +157,7 @@
<template> <template>
<ds-space v-for="link in socialMediaLinks" :key="link.username" margin="x-small"> <ds-space v-for="link in socialMediaLinks" :key="link.username" margin="x-small">
<a :href="link.url" target="_blank"> <a :href="link.url" target="_blank">
<ds-avatar :image="link.favicon" /> <user-avatar :image="link.favicon" />
{{ link.username }} {{ link.username }}
</a> </a>
</ds-space> </ds-space>