client: remove _prId_

That property was set on promo notes in the backend. Since it is no longer
being used it should also be removed from the client.
This commit is contained in:
Johann150 2022-08-14 13:14:17 +02:00
parent 745df85809
commit 39b85f4a08
Signed by untrusted user: Johann150
GPG key ID: 9EE6577A2A06F8F1

View file

@ -10,7 +10,7 @@
<template #default="{ items: notes }">
<div class="giivymft" :class="{ noGap }">
<XList ref="notes" v-slot="{ item: note }" :items="notes" :direction="pagination.reversed ? 'up' : 'down'" :reversed="pagination.reversed" :no-gap="noGap" class="notes">
<XNote :key="note._featuredId_ || note._prId_ || note.id" class="qtqtichx" :note="note"/>
<XNote :key="note._featuredId_ || note.id" class="qtqtichx" :note="note"/>
</XList>
</div>
</template>